@@ -2,6 +2,18 @@
class NortificationService {
+ crowi!: any;
+
+ notificationEvent!: any;
+ constructor(crowi) {
+ this.crowi = crowi;
+ this.notificationEvent = crowi.event('notification');
+ // init
+ this.notificationEvent.on('update', this.notificationEvent.onUpdate);
+ }
}