Aktiviert Endpunkt prüfen

This commit is contained in:
Developer 02 2025-03-25 13:56:17 +01:00
parent 0786013bd0
commit d228a3cd50

View File

@ -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")]