Refactors project structure to support modular, feature-driven development Introduces comprehensive language localization support Adds menu management with role-based access control Implements dynamic sidebar and theme switching capabilities Enhances project scalability and maintainability
12 lines
226 B
C#
12 lines
226 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace CalendarServer.Controllers;
|
|
|
|
public class HomeController : Controller
|
|
{
|
|
public IActionResult Index()
|
|
{
|
|
ViewData["Title"] = "Dashboard";
|
|
return View();
|
|
}
|
|
}
|