blob: 7bb0a86acfd1698128e3dc8517a289a50613809a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
namespace IOL.GreatOffice.Api.Endpoints.Internal.Root;
public class IsAuthenticatedRoute : RouteBaseSync.WithoutRequest.WithActionResult
{
[Authorize]
[HttpGet("~/_/is-authenticated")]
public override ActionResult Handle() {
return Ok();
}
}
|