aboutsummaryrefslogtreecommitdiffstats
path: root/code/api/Pages/Home.cshtml.cs
diff options
context:
space:
mode:
Diffstat (limited to 'code/api/Pages/Home.cshtml.cs')
-rw-r--r--code/api/Pages/Home.cshtml.cs9
1 files changed, 5 insertions, 4 deletions
diff --git a/code/api/Pages/Home.cshtml.cs b/code/api/Pages/Home.cshtml.cs
index 0d8bcd6..dbf56e1 100644
--- a/code/api/Pages/Home.cshtml.cs
+++ b/code/api/Pages/Home.cshtml.cs
@@ -1,7 +1,8 @@
-namespace I2R.Storage.Api.Pages;
+namespace Quality.Storage.Api.Pages;
public class Home : BasePageModel
{
- public Home() : base() { }
- public void OnGet() { }
-} \ No newline at end of file
+ public void OnGet() {
+ ViewData["Title"] = "Home";
+ }
+}