소스 검색

fix variable

zahmis 4 년 전
부모
커밋
7d39f2016f
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      packages/slackbot-proxy/src/entities/relation-mock.ts

+ 2 - 2
packages/slackbot-proxy/src/entities/relation-mock.ts

@@ -10,7 +10,7 @@ import { Installation } from './installation';
 //     create: ['srv', 'admin'],
 //     search: ['admin'],
 //   }
-interface PermittedChannels {
+interface PermittedChannelsForEachCommand {
   commandToChannelMap: { [command: string]: string[] };
 }
 
@@ -48,7 +48,7 @@ export class RelationMock {
   supportedCommandsForSingleUse: string[];
 
   @Column({ type: 'json' })
-  permittedChannels: PermittedChannels
+  permittedChannelsForEachCommand : PermittedChannelsForEachCommand
 
   @CreateDateColumn()
   expiredAtCommands: Date;