mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 20:18:08 +00:00
23 lines
506 B
JavaScript
23 lines
506 B
JavaScript
/* global axios */
|
|
import ApiClient from '../ApiClient';
|
|
|
|
class PortalsAPI extends ApiClient {
|
|
constructor() {
|
|
super('portals', { accountScoped: true });
|
|
}
|
|
|
|
getPortal({ portalSlug, locale }) {
|
|
return axios.get(`${this.url}/${portalSlug}?locale=${locale}`);
|
|
}
|
|
|
|
updatePortal({ portalSlug, portalObj }) {
|
|
return axios.patch(`${this.url}/${portalSlug}`, portalObj);
|
|
}
|
|
|
|
deletePortal(portalSlug) {
|
|
return axios.delete(`${this.url}/${portalSlug}`);
|
|
}
|
|
}
|
|
|
|
export default PortalsAPI;
|