mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-06-13 21:01:16 +08:00
Co-authored-by: Sivin Varghese <[email protected]> Co-authored-by: Pranav Raj S <[email protected]>
10 lines
193 B
JavaScript
10 lines
193 B
JavaScript
import ApiClient from './ApiClient';
|
|
|
|
class BulkActionsAPI extends ApiClient {
|
|
constructor() {
|
|
super('bulk_actions', { accountScoped: true });
|
|
}
|
|
}
|
|
|
|
export default new BulkActionsAPI();
|