blob: 8b7740c543dc2376470f3c949c16652fb2ef5bb9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import odooApi from '@/core/api/odooApi'
import { getAuth } from '@/core/utils/auth'
const getSite = async () => {
const auth = getAuth()
const dataSite = await odooApi('GET', `/api/v1/partner/${auth?.partnerId}/list/site`)
return dataSite
}
export default getSite
|