({ portalSlug, locale })
| 8 | } |
| 9 | |
| 10 | get({ portalSlug, locale }) { |
| 11 | return axios.get(`${this.url}/${portalSlug}/categories?locale=${locale}`); |
| 12 | } |
| 13 | |
| 14 | create({ portalSlug, categoryObj }) { |
| 15 | return axios.post(`${this.url}/${portalSlug}/categories`, categoryObj); |
no outgoing calls
no test coverage detected