zahmis 4 лет назад
Родитель
Сommit
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;