summaryrefslogtreecommitdiff
path: root/src/lib/promotinProgram/api/homepageApi.js
blob: d839101a122df57ec4777ee13e8bee5b5dcb0efa (plain)
1
2
3
4
5
6
7
8
9
10
11
import odooApi from "@/core/api/odooApi"

export const getPromotionHome = async () => {
    const response = await odooApi('GET', '/api/v1/promotion/home')
    return response
}

export const getProductPromotionHome = async ({id}) => {
    const response = await odooApi('GET', `/api/v1/promotion/home/${id}`)
    return response
}