diff options
| author | ivarlovlie <git@ivarlovlie.no> | 2022-09-29 12:09:31 +0200 |
|---|---|---|
| committer | ivarlovlie <git@ivarlovlie.no> | 2022-09-29 12:09:31 +0200 |
| commit | 662ed1d49e8e8203c6a687578de328efea1a8a84 (patch) | |
| tree | 5523d6ad919e6701e8832c7eb774e274da3ae68b /server/src/Endpoints/Internal | |
| parent | dc67099d1b928cc37bf0981c22a855fdfa28cfd9 (diff) | |
| download | greatoffice-662ed1d49e8e8203c6a687578de328efea1a8a84.tar.xz greatoffice-662ed1d49e8e8203c6a687578de328efea1a8a84.zip | |
feat: Add valid-session route
Diffstat (limited to 'server/src/Endpoints/Internal')
| -rw-r--r-- | server/src/Endpoints/Internal/Root/ValidSessionRoute.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/server/src/Endpoints/Internal/Root/ValidSessionRoute.cs b/server/src/Endpoints/Internal/Root/ValidSessionRoute.cs new file mode 100644 index 0000000..d592418 --- /dev/null +++ b/server/src/Endpoints/Internal/Root/ValidSessionRoute.cs @@ -0,0 +1,9 @@ +namespace IOL.GreatOffice.Api.Endpoints.Internal.Root; + +public class ValidSessionRoute : RouteBaseSync.WithoutRequest.WithActionResult +{ + [HttpGet("~/_/valid-session")] + public override ActionResult Handle() { + return Ok("VALID"); + } +}
\ No newline at end of file |
