aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio_22/Tango.Portal.Chat.Web/Controllers/HomeController.cs
diff options
context:
space:
mode:
authorRoy Ben Shabat <roy.mail.net@gmail.com>2025-09-03 00:06:46 +0300
committerRoy Ben Shabat <roy.mail.net@gmail.com>2025-09-03 00:06:46 +0300
commite91dd4d23647947b2c14787605b55400a405cff3 (patch)
treec1bb8fd60eb3923376573b63f8870e74f9828f5c /Software/Visual_Studio_22/Tango.Portal.Chat.Web/Controllers/HomeController.cs
parent12184412615b52ae98cba57921a7586e6970c436 (diff)
downloadTango-e91dd4d23647947b2c14787605b55400a405cff3.tar.gz
Tango-e91dd4d23647947b2c14787605b55400a405cff3.zip
Twine AI.
Diffstat (limited to 'Software/Visual_Studio_22/Tango.Portal.Chat.Web/Controllers/HomeController.cs')
-rw-r--r--Software/Visual_Studio_22/Tango.Portal.Chat.Web/Controllers/HomeController.cs10
1 files changed, 8 insertions, 2 deletions
diff --git a/Software/Visual_Studio_22/Tango.Portal.Chat.Web/Controllers/HomeController.cs b/Software/Visual_Studio_22/Tango.Portal.Chat.Web/Controllers/HomeController.cs
index 8b13afe10..4f7305600 100644
--- a/Software/Visual_Studio_22/Tango.Portal.Chat.Web/Controllers/HomeController.cs
+++ b/Software/Visual_Studio_22/Tango.Portal.Chat.Web/Controllers/HomeController.cs
@@ -1,9 +1,15 @@
using Microsoft.AspNetCore.Mvc;
+using Tango.Portal.Chat.Web.ViewModels;
-namespace ChatADX.Web.Controllers
+namespace Tango.Portal.Chat.Web.Controllers
{
public sealed class HomeController : Controller
{
- public IActionResult Index() => View();
+ public IActionResult Index()
+ {
+ HomeViewVM vm = new HomeViewVM();
+ vm.UserName = "Roy";
+ return View(vm);
+ }
}
}