mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-06-16 21:06:22 +08: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;
|