feat: stateless login ms/google
All checks were successful
Deploy QR Rapido / test (push) Successful in 42s
Deploy QR Rapido / build-and-push (push) Successful in 13m32s
Deploy QR Rapido / deploy-staging (push) Has been skipped
Deploy QR Rapido / deploy-production (push) Successful in 1m38s

This commit is contained in:
Ricardo Carneiro 2025-08-24 23:08:34 -03:00
parent 3dede8b4d6
commit 0ca91fb6df

View File

@ -17,7 +17,7 @@ namespace QRRapidoApp.Controllers
private readonly ILogger<AccountController> _logger;
private readonly IConfiguration _configuration;
public AccountController(IUserService userService, AdDisplayService adDisplayService,
public AccountController(IUserService userService, AdDisplayService adDisplayService,
ILogger<AccountController> 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 };