mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-04 13:07:55 +00:00
10 lines
205 B
JavaScript
10 lines
205 B
JavaScript
import ApiClient from './ApiClient';
|
|
|
|
class AttributeAPI extends ApiClient {
|
|
constructor() {
|
|
super('custom_attribute_definitions', { accountScoped: true });
|
|
}
|
|
}
|
|
|
|
export default new AttributeAPI();
|