PlotDirector/PlotLine/Controllers/AcceptanceController.cs
2026-06-06 20:36:54 +01:00

15 lines
380 B
C#

using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Authorization;
using PlotLine.Services;
namespace PlotLine.Controllers;
[Authorize]
public sealed class AcceptanceController(IAcceptanceService acceptance) : Controller
{
public async Task<IActionResult> Phase1(int? projectId)
{
return View(await acceptance.GetPhase1ChecklistAsync(projectId));
}
}