16 lines
370 B
C#
16 lines
370 B
C#
|
|
using Microsoft.AspNetCore.Mvc;
|
||
|
|
|
||
|
|
namespace PlanTempus.Application.Features.Settings.Components;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// ViewComponent for the modules settings tab.
|
||
|
|
/// Handles feature module toggles and add-on management.
|
||
|
|
/// </summary>
|
||
|
|
public class SettingsModulesViewComponent : ViewComponent
|
||
|
|
{
|
||
|
|
public IViewComponentResult Invoke()
|
||
|
|
{
|
||
|
|
return View();
|
||
|
|
}
|
||
|
|
}
|