bfca4852c8
Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com> Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
9 lines
181 B
JavaScript
9 lines
181 B
JavaScript
import ApiClient from '../ApiClient';
|
|
|
|
class PortalsAPI extends ApiClient {
|
|
constructor() {
|
|
super('portals', { accountScoped: true });
|
|
}
|
|
}
|
|
|
|
export default new PortalsAPI();
|