Răsfoiți Sursa

fix variable

zahmis 4 ani în urmă
părinte
comite
7d39f2016f
1 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  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;