change base controllers name - add dates and add admin select List

This commit is contained in:
MahanCh
2025-06-25 15:01:29 +03:30
parent 92f68d8555
commit 1e3780be38
12 changed files with 97 additions and 9 deletions

View File

@@ -0,0 +1,13 @@
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
namespace ServiceHost.Api.BaseControllers;
//[Authorize(Policy = "ClientArea")]
[Area("Client")]
[ApiExplorerSettings(GroupName = "Client")]
[Route("api/[area]/[controller]")]
public class ClientBaseController: ControllerBase
{
}