mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 03:27:52 +00:00
10 lines
204 B
JavaScript
10 lines
204 B
JavaScript
import ApiClient from './ApiClient';
|
|
|
|
class NotificationSubscriptions extends ApiClient {
|
|
constructor() {
|
|
super('notification_subscriptions');
|
|
}
|
|
}
|
|
|
|
export default new NotificationSubscriptions();
|