mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-06-04 21:02:35 +08:00
Add webpush notification permission in frontend Co-authored-by: Sojan <[email protected]>
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();
|