blob: 878ab7c06248c24eecb5f55a94a448b6b42a3ecc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// import odooApi from '@/core/api/odooApi';
// import { getAuth } from '@/core/utils/auth';
// const createMerchantApi = async ({ data }) => {
// const auth = getAuth();
// const lead = await odooApi(
// 'POST',
// `/api/v1/merchant/${auth.partnerId}`,
// data
// );
// return lead;
// };
// export default createMerchantApi;
|