Api-PWA/DocuMed.Api/Controllers/HomeController.cs

17 lines
294 B
C#
Raw Normal View History

2023-11-21 15:13:50 +03:30
using DocuMed.Api.Views.Home;
using Microsoft.AspNetCore.Authorization;
namespace DocuMed.Api.Controllers;
[Route("")]
[AllowAnonymous]
public class HomeController : Controller
{
[HttpGet]
2023-11-21 15:13:50 +03:30
public IActionResult Index()
{
return View("Index", new IndexModel());
}
}