api/NetinaCMS.Api/Controllers/HomeController.cs

15 lines
255 B
C#
Raw Normal View History

2024-03-24 12:35:42 +03:30
using NetinaCMS.Api.Views.Home;
namespace NetinaCMS.Api.Controllers;
[Route("")]
[AllowAnonymous]
public class HomeController : Controller
{
[HttpGet]
public IActionResult Index()
{
return View("Index", new IndexModel());
}
}