Files
Backend-Api/ServiceHost/BaseControllers/ClientBaseController.cs

13 lines
313 B
C#

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
{
}