aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/Endpoints/Internal/Root/ValidSessionRoute.cs
blob: f377ff663f983e39f754c90440d6df446dceda11 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
namespace IOL.GreatOffice.Api.Endpoints.Internal.Root;

public class ValidSessionRoute : RouteBaseSync.WithoutRequest.WithActionResult
{
    [Authorize]
    [HttpGet("~/_/valid-session")]
    public override ActionResult Handle() {
        return Ok();
    }
}