mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 12:08:01 +00:00
Co-authored-by: Pranav <pranav@chatwoot.com> Co-authored-by: Pranav <pranavrajs@gmail.com>
10 lines
216 B
JavaScript
10 lines
216 B
JavaScript
import ApiClient from '../ApiClient';
|
|
|
|
class CaptainBulkActionsAPI extends ApiClient {
|
|
constructor() {
|
|
super('captain/bulk_actions', { accountScoped: true });
|
|
}
|
|
}
|
|
|
|
export default new CaptainBulkActionsAPI();
|