소스 검색

added comment

kaori 4 년 전
부모
커밋
d9625e4dd6
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  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) {