Files
Aberwyn/Aberwyn/Controllers/ReportController.cs
Elias Jansson 5a17df917d
All checks were successful
continuous-integration/drone/push Build is passing
Budget report!
2025-09-21 14:40:00 +02:00

16 lines
339 B
C#

using Aberwyn.Models;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
namespace Aberwyn.Controllers
{
[Authorize(Roles = "Budget")]
public class ReportController : Controller
{
public IActionResult Budget()
{
return View(new BudgetReportViewModel());
}
}
}