chore: refactor 2

This commit is contained in:
Vishnu Narayanan
2024-01-25 15:41:14 +05:30
parent cb2fa4da45
commit d2f5b5f976
6 changed files with 122 additions and 4 deletions
+3 -3
View File
@@ -2,9 +2,9 @@
import ApiClient from './ApiClient';
class SLA extends ApiClient {
class SlaAPI extends ApiClient {
constructor() {
super('sla', { accountScoped: true });
super('sla_policies', { accountScoped: true });
}
get({ page }) {
@@ -13,4 +13,4 @@ class SLA extends ApiClient {
}
}
export default new SLA();
export default new SlaAPI();