mirror of
https://github.com/lingble/chatwoot.git
synced 2025-12-02 19:13:41 +00:00
10 lines
177 B
JavaScript
10 lines
177 B
JavaScript
import ApiClient from './ApiClient';
|
|
|
|
class LabelsAPI extends ApiClient {
|
|
constructor() {
|
|
super('labels', { accountScoped: true });
|
|
}
|
|
}
|
|
|
|
export default new LabelsAPI();
|