mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-07-04 21:06:27 +08:00
* Ability to change the account name * Ability to set a language to the account Addresses: #667 #307 Co-authored-by: Pranav Raj Sreepuram <[email protected]>
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();
|