chatwoot/app/javascript/dashboard/api/sla.js
Vishnu Narayanan cc47ccaa2c
feat(ee): Add SLA management UI (#8777)
Co-authored-by: Sivin Varghese <[email protected]>
Co-authored-by: Muhsin Keloth <[email protected]>
Co-authored-by: Pranav <[email protected]>
2024-02-20 23:03:22 -08:00

10 lines
177 B
JavaScript

import ApiClient from './ApiClient';
class SlaAPI extends ApiClient {
constructor() {
super('sla_policies', { accountScoped: true });
}
}
export default new SlaAPI();