change base controllers name - add dates and add admin select List
This commit is contained in:
13
ServiceHost/BaseControllers/ClientBaseController.cs
Normal file
13
ServiceHost/BaseControllers/ClientBaseController.cs
Normal 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
|
||||
{
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user