Очередной фикс авторизации
All checks were successful
Create and publish a Docker image / Publish image (push) Successful in 19s
Create and publish a Docker image / Deploy image (push) Successful in 4s

This commit is contained in:
Sergey Karmanov 2023-12-24 12:55:41 +03:00
parent 3ab097df30
commit d33eb1df9b
Signed by: serega404
GPG Key ID: B6AD49C8C835460C

View File

@ -46,7 +46,7 @@ builder.Services.AddAuthentication(opt => {
{ {
options.ClientId = builder.Configuration["Google:ClientId"]!; options.ClientId = builder.Configuration["Google:ClientId"]!;
options.ClientSecret = builder.Configuration["Google:ClientSecret"]!; options.ClientSecret = builder.Configuration["Google:ClientSecret"]!;
options.CallbackPath = "/api/signin-google"; options.CallbackPath = "/api/signin-google?";
}); });