From 78bec91c71233bb83bb7c6758b895c53e734e847 Mon Sep 17 00:00:00 2001 From: Daniel-I-Am Date: Sun, 11 Oct 2020 23:09:04 +0200 Subject: [PATCH] Rename controller --- .../App/{CustomCommandApi.cs => CustomCommandController.cs} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename ChaosBot/WebServer/App/{CustomCommandApi.cs => CustomCommandController.cs} (97%) diff --git a/ChaosBot/WebServer/App/CustomCommandApi.cs b/ChaosBot/WebServer/App/CustomCommandController.cs similarity index 97% rename from ChaosBot/WebServer/App/CustomCommandApi.cs rename to ChaosBot/WebServer/App/CustomCommandController.cs index 7009411..5e4c638 100644 --- a/ChaosBot/WebServer/App/CustomCommandApi.cs +++ b/ChaosBot/WebServer/App/CustomCommandController.cs @@ -14,11 +14,11 @@ namespace ChaosBot.WebServer.App { [ApiController] [Route("/api/custom-commands")] - public class CustomCommandApi : Controller + public class CustomCommandController : Controller { private readonly AccessTokenCache _accessTokenCache; - public CustomCommandApi( + public CustomCommandController( AccessTokenCache accessTokenCache ) {