blob: 516b4beda4c6cb710af35d27f3cde846dfc66073 (
plain)
1
2
3
4
5
6
7
|
import odooApi from '~/libs/odooApi';
export const getPageContent = async ({ path }: { path: string }) => {
const params = new URLSearchParams({ url_path: path });
return await odooApi('GET', `/api/v1/page-content?${params.toString()}`);
};
|