From 0ca91fb6dfc8b60b13383cacf55e645350acf895 Mon Sep 17 00:00:00 2001 From: Ricardo Carneiro Date: Sun, 24 Aug 2025 23:08:34 -0300 Subject: [PATCH] feat: stateless login ms/google --- Controllers/AccountController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Controllers/AccountController.cs b/Controllers/AccountController.cs index a733e64..f7896ba 100644 --- a/Controllers/AccountController.cs +++ b/Controllers/AccountController.cs @@ -17,7 +17,7 @@ namespace QRRapidoApp.Controllers private readonly ILogger _logger; private readonly IConfiguration _configuration; - public AccountController(IUserService userService, AdDisplayService adDisplayService, + public AccountController(IUserService userService, AdDisplayService adDisplayService, ILogger logger, IConfiguration configuration) { _userService = userService; @@ -55,7 +55,7 @@ namespace QRRapidoApp.Controllers if (returnUrl == "/") { - redirectUrl = $"{baseUrl}/Account/MicrosoftCallback"; + redirectUrl = $"{baseUrl}/Account/MicrosoftCallback"; } var properties = new AuthenticationProperties { RedirectUri = redirectUrl };