diff --git a/DigitalData.UserManager.API/Controllers/PlaceholderAuthController.cs b/DigitalData.UserManager.API/Controllers/PlaceholderAuthController.cs index 1ecf960..aa60034 100644 --- a/DigitalData.UserManager.API/Controllers/PlaceholderAuthController.cs +++ b/DigitalData.UserManager.API/Controllers/PlaceholderAuthController.cs @@ -9,9 +9,9 @@ namespace DigitalData.UserManager.API.Controllers; [Tags("Auth")] public class PlaceholderAuthController : ControllerBase { - [AllowAnonymous] + [Authorize] [HttpGet("check")] - public IActionResult CheckAuthentication() => throw new NotImplementedException(); + public IActionResult CheckAuthentication() => Ok(); [AllowAnonymous] [HttpPost("login")]