Revert "refactor: restructure controllers and update user references for ProgramManager"

This reverts commit c059066b13.
This commit is contained in:
2025-12-13 15:49:57 +03:30
parent 91259046f6
commit b12b3b9eb8
27 changed files with 498 additions and 77 deletions

View File

@@ -1,13 +0,0 @@
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
namespace ServiceHost.BaseControllers;
[Authorize(Policy = "AdminArea")]
[Area("Admin")]
[ApiExplorerSettings(GroupName = "ProgramManager")]
[Route("api/admin/programmanager/[controller]")]
public class ProgramManagerBaseController:ControllerBase
{
}