From 238c5ac984d1b3de30671b66368311b55e7a82f5 Mon Sep 17 00:00:00 2001 From: yukun-dong Date: Tue, 18 Jul 2023 16:03:15 +0800 Subject: [PATCH] refactor: update --- bot-sso/commands/{SSOCommands.ts => SSOCommandMap.ts} | 0 bot-sso/ssoDialog.ts | 2 +- bot-sso/teamsBot.ts | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename bot-sso/commands/{SSOCommands.ts => SSOCommandMap.ts} (100%) 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;