From 51f07b747e573fd46d8f8ddfce7f4cef83e8d2ea Mon Sep 17 00:00:00 2001 From: JustArchi Date: Wed, 30 Jan 2019 23:25:51 +0100 Subject: [PATCH] Misc --- ArchiSteamFarm/IPC/Controllers/Api/BotController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ArchiSteamFarm/IPC/Controllers/Api/BotController.cs b/ArchiSteamFarm/IPC/Controllers/Api/BotController.cs index 2a5447d22..eb969c121 100644 --- a/ArchiSteamFarm/IPC/Controllers/Api/BotController.cs +++ b/ArchiSteamFarm/IPC/Controllers/Api/BotController.cs @@ -378,9 +378,9 @@ namespace ArchiSteamFarm.IPC.Controllers.Api { /// /// Denies 2FA confirmations of given bots, requires ASF 2FA module to be active on them. /// - [HttpPost("{botNames:required}/TwoFactorAuthentication/Confirmations/Deny")] + [HttpPost("{botNames:required}/TwoFactorAuthentication/Confirmations/Cancel")] [ProducesResponseType(typeof(GenericResponse>), 200)] - public async Task>>> TwoFactorAuthenticationConfirmationsDenyPost(string botNames) => await TwoFactorAuthenticationConfirmationsPost(botNames, false).ConfigureAwait(false); + public async Task>>> TwoFactorAuthenticationConfirmationsCancelPost(string botNames) => await TwoFactorAuthenticationConfirmationsPost(botNames, false).ConfigureAwait(false); /// /// Fetches 2FA tokens of given bots, requires ASF 2FA module to be active on them.