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

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