From 58ef5833b3f77f321c587dd86448c888029016ce Mon Sep 17 00:00:00 2001 From: ivarlovlie Date: Thu, 22 Dec 2022 14:44:26 +0100 Subject: feat: Many things - Working Login/Logout - Groundwork for web components - Loading web-components with version tag - Load temporal-polyfill globally --- code/api/Endpoints/_Root/SessionEndpoint.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'code/api/Endpoints/_Root') diff --git a/code/api/Endpoints/_Root/SessionEndpoint.cs b/code/api/Endpoints/_Root/SessionEndpoint.cs index 8d6ca56..c596dce 100644 --- a/code/api/Endpoints/_Root/SessionEndpoint.cs +++ b/code/api/Endpoints/_Root/SessionEndpoint.cs @@ -1,9 +1,9 @@ namespace I2R.Storage.Api.Endpoints._Root; -public class SessionEndpoint : Base +public class SessionEndpoint : EndpointBase { [HttpGet("~/session")] public ActionResult Handle() { - return LoggedInUser.ForThePeople(HttpContext); + return LoggedInUserModel.ForThePeople(HttpContext); } } \ No newline at end of file -- cgit v1.3