mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 19:48:08 +00:00
Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com> Co-authored-by: Shivam Mishra <scm.mymail@gmail.com>
22 lines
456 B
JavaScript
22 lines
456 B
JavaScript
/* global axios */
|
|
import ApiClient from './ApiClient';
|
|
|
|
class AccountAPI extends ApiClient {
|
|
constructor() {
|
|
super('', { accountScoped: true });
|
|
}
|
|
|
|
createAccount(data) {
|
|
return axios.post(`${this.apiVersion}/accounts`, data);
|
|
}
|
|
|
|
async getCacheKeys() {
|
|
const response = await axios.get(
|
|
`/api/v1/accounts/${this.accountIdFromRoute}/cache_keys`
|
|
);
|
|
return response.data.cache_keys;
|
|
}
|
|
}
|
|
|
|
export default new AccountAPI();
|