mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 20:18:08 +00:00
* Ability to change the account name * Ability to set a language to the account Addresses: #667 #307 Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com>
10 lines
173 B
JavaScript
10 lines
173 B
JavaScript
import ApiClient from './ApiClient';
|
|
|
|
class AccountAPI extends ApiClient {
|
|
constructor() {
|
|
super('', { accountScoped: true });
|
|
}
|
|
}
|
|
|
|
export default new AccountAPI();
|