diff --git a/bot-sso/commands/SSOCommands.ts b/bot-sso/commands/SSOCommandMap.ts similarity index 100% rename from bot-sso/commands/SSOCommands.ts rename to bot-sso/commands/SSOCommandMap.ts diff --git a/bot-sso/ssoDialog.ts b/bot-sso/ssoDialog.ts index aade4240..2a29d299 100644 --- a/bot-sso/ssoDialog.ts +++ b/bot-sso/ssoDialog.ts @@ -17,7 +17,7 @@ import "isomorphic-fetch"; import { TeamsBotSsoPrompt } from "@microsoft/teamsfx"; import oboAuthConfig from "./authConfig"; import config from "./config"; -import { SSOCommandMap } from "./commands/SSOCommands"; +import { SSOCommandMap } from "./commands/SSOCommandMap"; const DIALOG_NAME = "SSODialog"; const MAIN_WATERFALL_DIALOG = "MainWaterfallDialog"; diff --git a/bot-sso/teamsBot.ts b/bot-sso/teamsBot.ts index 8c99577a..2e813c94 100644 --- a/bot-sso/teamsBot.ts +++ b/bot-sso/teamsBot.ts @@ -8,7 +8,7 @@ import { StatePropertyAccessor, } from "botbuilder"; import { SSODialog } from "./ssoDialog"; -import { SSOCommandMap } from "./commands/SSOCommands"; +import { SSOCommandMap } from "./commands/SSOCommandMap"; export class TeamsBot extends TeamsActivityHandler { conversationState: ConversationState;