From 5f604b3052dab1d51dc130df2470bf330b283ec6 Mon Sep 17 00:00:00 2001 From: ivar Date: Tue, 19 Mar 2024 01:02:22 +0100 Subject: Max lenghts on db schema Use latest temporal from cdn Implement majority of translation functionality Major refinements/bugs --- code/api/Pages/Index.cshtml.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'code/api/Pages/Index.cshtml.cs') diff --git a/code/api/Pages/Index.cshtml.cs b/code/api/Pages/Index.cshtml.cs index 8129a9b..86a9d0b 100644 --- a/code/api/Pages/Index.cshtml.cs +++ b/code/api/Pages/Index.cshtml.cs @@ -1,8 +1,8 @@ -namespace I2R.Storage.Api.Pages; +namespace Quality.Storage.Api.Pages; -public class Index : PageModel +public class Index : BasePageModel { - public ActionResult OnGet() { - return User.Identity.IsAuthenticated ? Redirect("/home") : Redirect("/login"); - } -} \ No newline at end of file + public void OnGet() { + ViewData["Title"] = "Index"; + } +} -- cgit v1.3