feat: restructure ProgramManager area and integrate Shared.Contracts
This commit is contained in:
14
ServiceHost/BaseControllers/ProgramManagerBaseController.cs
Normal file
14
ServiceHost/BaseControllers/ProgramManagerBaseController.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using Microsoft.AspNetCore.Authorization;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace ServiceHost.BaseControllers;
|
||||
|
||||
[Authorize(Policy = "AdminArea")]
|
||||
[Area("ProgramManager")]
|
||||
[ApiExplorerSettings(GroupName = "ProgramManager")]
|
||||
[Route("api/[area]/[controller]")]
|
||||
public class ProgramManagerBaseController : ControllerBase
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user