782165478b
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
22 lines
506 B
JavaScript
22 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;
|