13 lines
307 B
C#
13 lines
307 B
C#
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace ServiceHost.BaseControllers;
|
|
|
|
[Authorize(Policy = "ClientArea")]
|
|
[Area("Client")]
|
|
[ApiExplorerSettings(GroupName = "Client")]
|
|
[Route("api/[area]/[controller]")]
|
|
public class ClientBaseController: ControllerBase
|
|
{
|
|
|
|
} |