aboutsummaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
Diffstat (limited to 'server')
-rw-r--r--server/src/Endpoints/Internal/Root/ValidSessionRoute.cs9
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