diff options
Diffstat (limited to 'server/src/Endpoints/Internal/Root/ValidSessionRoute.cs')
| -rw-r--r-- | server/src/Endpoints/Internal/Root/ValidSessionRoute.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/src/Endpoints/Internal/Root/ValidSessionRoute.cs b/server/src/Endpoints/Internal/Root/ValidSessionRoute.cs index d592418..f377ff6 100644 --- a/server/src/Endpoints/Internal/Root/ValidSessionRoute.cs +++ b/server/src/Endpoints/Internal/Root/ValidSessionRoute.cs @@ -2,8 +2,9 @@ namespace IOL.GreatOffice.Api.Endpoints.Internal.Root; public class ValidSessionRoute : RouteBaseSync.WithoutRequest.WithActionResult { + [Authorize] [HttpGet("~/_/valid-session")] public override ActionResult Handle() { - return Ok("VALID"); + return Ok(); } }
\ No newline at end of file |
