summaryrefslogtreecommitdiff
path: root/src/api/bannerApi.js
blob: 8bae131d29006fac6459e766196d3ec08651fa38 (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}`)
}