forked from ddrilling/AsbCloudServer
19 lines
451 B
C#
19 lines
451 B
C#
using AsbCloudApp.Data;
|
|
using AsbCloudApp.Services;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace AsbCloudWebApi.Controllers
|
|
{
|
|
[Route("api/admin/role")]
|
|
[ApiController]
|
|
[Authorize]
|
|
public class AdminUserRoleController : CrudController<UserRoleDto, IUserRoleService>
|
|
{
|
|
public AdminUserRoleController(IUserRoleService service)
|
|
:base(service)
|
|
{
|
|
}
|
|
}
|
|
}
|