Фикс
All checks were successful
Create and publish a Docker image / Publish image (push) Successful in 5m23s
Create and publish a Docker image / Deploy image (push) Successful in 9s

This commit is contained in:
2023-12-24 05:27:32 +03:00
parent ac987781fa
commit f65eda733c
2 changed files with 5 additions and 2 deletions

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 = Url.Action(nameof(SignInWithGoogleCallback)) };
return Challenge(properties, GoogleDefaults.AuthenticationScheme);
}