From 4c811cff42478ecbd846670c468a4d7cd44a8aac Mon Sep 17 00:00:00 2001 From: hictooth Date: Sat, 17 Jun 2023 23:37:21 +0100 Subject: [PATCH] rename LoginChild back --- src/Controllers/Common/AuthenticationController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Controllers/Common/AuthenticationController.cs b/src/Controllers/Common/AuthenticationController.cs index 5a437e9..5e0a990 100644 --- a/src/Controllers/Common/AuthenticationController.cs +++ b/src/Controllers/Common/AuthenticationController.cs @@ -114,7 +114,7 @@ public class AuthenticationController : Controller { [Route("AuthenticationWebService.asmx/LoginChild")] [DecryptRequest("childUserID")] [EncryptResponse] - public IActionResult LoginChild10([FromForm] string parentApiToken) { + public IActionResult LoginChild([FromForm] string parentApiToken) { User? user = ctx.Sessions.FirstOrDefault(e => e.ApiToken == parentApiToken)?.User; if (user is null) { return Ok();