summaryrefslogtreecommitdiff
path: root/src/lib/auth/api/switchAccountProgresApi.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/auth/api/switchAccountProgresApi.js')
-rw-r--r--src/lib/auth/api/switchAccountProgresApi.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/lib/auth/api/switchAccountProgresApi.js b/src/lib/auth/api/switchAccountProgresApi.js
new file mode 100644
index 00000000..4005ce3c
--- /dev/null
+++ b/src/lib/auth/api/switchAccountProgresApi.js
@@ -0,0 +1,15 @@
+import odooApi from '@/core/api/odooApi';
+import { getAuth } from '@/core/utils/auth';
+
+const switchAccountProgresApi = async () => {
+ const auth = getAuth();
+ console.log('auth', auth);
+ const switchAccount = await odooApi(
+ 'PUT',
+ `/api/v1/user/${auth.partner_id}/switch_progres`
+ );
+ console.log('switchAccount', switchAccount);
+ return switchAccount;
+};
+
+export default switchAccountProgresApi;