Răsfoiți Sursa

added comment

kaori 4 ani în urmă
părinte
comite
d9625e4dd6
1 a modificat fișierele cu 4 adăugiri și 0 ștergeri
  1. 4 0
      packages/app/src/server/service/in-app-notification.ts

+ 4 - 0
packages/app/src/server/service/in-app-notification.ts

@@ -20,10 +20,12 @@ class InAppNotificationService {
   }
 
   initCommentEvent(): void {
+    // create
     this.commentEvent.on('create', (user) => {
       this.commentEvent.onCreate();
     });
 
+    // update
     this.commentEvent.on('update', (user) => {
       this.commentEvent.onUpdate();
 
@@ -32,6 +34,8 @@ class InAppNotificationService {
       }
     });
 
+    // remove
+
   }
 
   removeActivity = async function(activity) {