Files
soorya-carpet/bootstrap/ssr/assets/index-BRhO3_4E.js
admin eba9e5f182
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
chore: frontend build
2025-10-27 15:27:26 +05:45

33 lines
664 B
JavaScript

import { q as queryParams } from "./index-CY6fYws-.js";
const store = (options) => ({
url: store.url(options),
method: "post"
});
store.definition = {
methods: ["post"],
url: "/user/confirm-password"
};
store.url = (options) => {
return store.definition.url + queryParams(options);
};
store.post = (options) => ({
url: store.url(options),
method: "post"
});
const storeForm = (options) => ({
action: store.url(options),
method: "post"
});
storeForm.post = (options) => ({
action: store.url(options),
method: "post"
});
store.form = storeForm;
const confirm = {
store: Object.assign(store, store)
};
export {
confirm as c,
store as s
};