aboutsummaryrefslogtreecommitdiffstats
path: root/code/api/Pages/Home.cshtml.cs
diff options
context:
space:
mode:
authorivarlovlie <git@ivarlovlie.no>2022-12-22 14:44:26 +0100
committerivarlovlie <git@ivarlovlie.no>2022-12-22 14:44:26 +0100
commit58ef5833b3f77f321c587dd86448c888029016ce (patch)
treefe5e6f47781573cc1fb5938f9b8cd8b51022946a /code/api/Pages/Home.cshtml.cs
parent82ade3c31fb17b662feec59e9e654ceb66edbb7a (diff)
downloadstorage-58ef5833b3f77f321c587dd86448c888029016ce.tar.xz
storage-58ef5833b3f77f321c587dd86448c888029016ce.zip
feat: Many things
- Working Login/Logout - Groundwork for web components - Loading web-components with version tag - Load temporal-polyfill globally
Diffstat (limited to 'code/api/Pages/Home.cshtml.cs')
-rw-r--r--code/api/Pages/Home.cshtml.cs9
1 files changed, 3 insertions, 6 deletions
diff --git a/code/api/Pages/Home.cshtml.cs b/code/api/Pages/Home.cshtml.cs
index 0fa9aca..0d8bcd6 100644
--- a/code/api/Pages/Home.cshtml.cs
+++ b/code/api/Pages/Home.cshtml.cs
@@ -1,10 +1,7 @@
-using Microsoft.AspNetCore.Mvc.RazorPages;
-
namespace I2R.Storage.Api.Pages;
-public class Home : PageModel
+public class Home : BasePageModel
{
- public void OnGet() {
-
- }
+ public Home() : base() { }
+ public void OnGet() { }
} \ No newline at end of file