Фикс
All checks were successful
Create and publish a Docker image / Publish image (push) Successful in 1m27s
Create and publish a Docker image / Deploy image (push) Successful in 39s

This commit is contained in:
Sergey Karmanov 2023-12-24 05:27:32 +03:00
parent ac987781fa
commit d2d393b73f
Signed by: serega404
GPG Key ID: B6AD49C8C835460C

View File

@ -148,7 +148,7 @@ public class UsersController : ControllerBase
[HttpGet("signin-google")]
public IActionResult SignInWithGoogle()
{
var properties = new AuthenticationProperties { RedirectUri = Url.Action("SignInWithGoogleCallback") };
var properties = new AuthenticationProperties { RedirectUri = "https://cyberbloom.zetcraft.ru/api/users/signin-google-callback" };
return Challenge(properties, GoogleDefaults.AuthenticationScheme);
}