summaryrefslogtreecommitdiff
path: root/src/api/BannerApi.js
blob: 8ebecd26570c44411233c1925ba3ad75c38464b3 (plain)
1
2
3
4
5
import odooApi from '@/core/api/odooApi'

export const BannerApi = ({ type }) => {
  return async () => await odooApi('GET', `/api/v1/banner?type=${type}`)
}