diff options
| author | Roy Ben Shabat <roy.mail.net@gmail.com> | 2025-09-03 00:06:46 +0300 |
|---|---|---|
| committer | Roy Ben Shabat <roy.mail.net@gmail.com> | 2025-09-03 00:06:46 +0300 |
| commit | e91dd4d23647947b2c14787605b55400a405cff3 (patch) | |
| tree | c1bb8fd60eb3923376573b63f8870e74f9828f5c /Software/Visual_Studio_22/Tango.Portal.Chat.Web/Controllers/HomeController.cs | |
| parent | 12184412615b52ae98cba57921a7586e6970c436 (diff) | |
| download | Tango-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.cs | 10 |
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); + } } } |
