zahmis 4 лет назад
Родитель
Сommit
b29b89c9fc
1 измененных файлов с 0 добавлено и 5 удалено
  1. 0 5
      packages/slackbot-proxy/src/controllers/slack.ts

+ 0 - 5
packages/slackbot-proxy/src/controllers/slack.ts

@@ -175,8 +175,6 @@ export class SlackCtrl {
 
 
     await Promise.all(relations.map(async(relation) => {
     await Promise.all(relations.map(async(relation) => {
       const isSupported = await this.relationsService.isSupportedGrowiCommandForSingleUse(relation, growiCommand.growiCommandType, body.channel_name, baseDate);
       const isSupported = await this.relationsService.isSupportedGrowiCommandForSingleUse(relation, growiCommand.growiCommandType, body.channel_name, baseDate);
-      console.log(isSupported);
-
       if (isSupported) {
       if (isSupported) {
         return relationsForSingleUse.push(relation);
         return relationsForSingleUse.push(relation);
       }
       }
@@ -194,11 +192,8 @@ export class SlackCtrl {
       const isSupported = await this.relationsService.isSupportedGrowiCommandForBroadcastUse(
       const isSupported = await this.relationsService.isSupportedGrowiCommandForBroadcastUse(
         relation, growiCommand.growiCommandType, body.channel_name, baseDate,
         relation, growiCommand.growiCommandType, body.channel_name, baseDate,
       );
       );
-      console.log(isSupported);
       if (isSupported) {
       if (isSupported) {
         relationsForBroadcastUse.push(relation);
         relationsForBroadcastUse.push(relation);
-        console.log(relationsForBroadcastUse);
-
       }
       }
     }));
     }));