mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-06-13 21:01:16 +08:00
Co-authored-by: Sivin Varghese <[email protected]> Co-authored-by: Muhsin Keloth <[email protected]> Co-authored-by: Pranav <[email protected]>
10 lines
177 B
JavaScript
10 lines
177 B
JavaScript
import ApiClient from './ApiClient';
|
|
|
|
class SlaAPI extends ApiClient {
|
|
constructor() {
|
|
super('sla_policies', { accountScoped: true });
|
|
}
|
|
}
|
|
|
|
export default new SlaAPI();
|