Class IdentityRoleController
Implements
ICrudAppService<IdentityRoleDto, Guid, GetIdentityRolesInput, IdentityRoleCreateDto, IdentityRoleUpdateDto>
Inherited Members
Namespace: Volo.Abp.Identity
Assembly: Volo.Abp.Identity.HttpApi.dll
Syntax
[RemoteService(true, Name = "AbpIdentity")]
[Area("identity")]
[Route("api/identity/roles")]
public class IdentityRoleController : AbpControllerBase, IAvoidDuplicateCrossCuttingConcerns, IIdentityRoleAppService, ICrudAppService<IdentityRoleDto, Guid, GetIdentityRolesInput, IdentityRoleCreateDto, IdentityRoleUpdateDto>, ICrudAppService<IdentityRoleDto, IdentityRoleDto, Guid, GetIdentityRolesInput, IdentityRoleCreateDto, IdentityRoleUpdateDto>, IReadOnlyAppService<IdentityRoleDto, IdentityRoleDto, Guid, GetIdentityRolesInput>, ICreateUpdateAppService<IdentityRoleDto, Guid, IdentityRoleCreateDto, IdentityRoleUpdateDto>, ICreateAppService<IdentityRoleDto, IdentityRoleCreateDto>, IUpdateAppService<IdentityRoleDto, Guid, IdentityRoleUpdateDto>, IDeleteAppService<Guid>, IApplicationService, IRemoteService
Constructors
IdentityRoleController(IIdentityRoleAppService)
Declaration
public IdentityRoleController(IIdentityRoleAppService roleAppService)
Parameters
Type | Name | Description |
---|---|---|
IIdentityRoleAppService | roleAppService |
Properties
RoleAppService
Declaration
protected IIdentityRoleAppService RoleAppService { get; }
Property Value
Type | Description |
---|---|
IIdentityRoleAppService |
Methods
CreateAsync(IdentityRoleCreateDto)
Declaration
[HttpPost]
public virtual Task<IdentityRoleDto> CreateAsync(IdentityRoleCreateDto input)
Parameters
Type | Name | Description |
---|---|---|
IdentityRoleCreateDto | input |
Returns
Type | Description |
---|---|
Task<IdentityRoleDto> |
DeleteAsync(Guid)
Declaration
[HttpDelete]
[Route("{id}")]
public virtual Task DeleteAsync(Guid id)
Parameters
Type | Name | Description |
---|---|---|
Guid | id |
Returns
Type | Description |
---|---|
Task |
GetAllClaimTypesAsync()
Declaration
[HttpGet]
[Route("all-claim-types")]
public virtual Task<List<ClaimTypeDto>> GetAllClaimTypesAsync()
Returns
Type | Description |
---|---|
Task<List<ClaimTypeDto>> |
GetAllListAsync()
Declaration
[HttpGet]
[Route("all")]
public virtual Task<ListResultDto<IdentityRoleDto>> GetAllListAsync()
Returns
Type | Description |
---|---|
Task<ListResultDto<IdentityRoleDto>> |
GetAsync(Guid)
Declaration
[HttpGet]
[Route("{id}")]
public virtual Task<IdentityRoleDto> GetAsync(Guid id)
Parameters
Type | Name | Description |
---|---|---|
Guid | id |
Returns
Type | Description |
---|---|
Task<IdentityRoleDto> |
GetClaimsAsync(Guid)
Declaration
[HttpGet]
[Route("{id}/claims")]
public virtual Task<List<IdentityRoleClaimDto>> GetClaimsAsync(Guid id)
Parameters
Type | Name | Description |
---|---|---|
Guid | id |
Returns
Type | Description |
---|---|
Task<List<IdentityRoleClaimDto>> |
GetListAsync(GetIdentityRoleListInput)
Declaration
[HttpGet]
[Route("")]
public virtual Task<PagedResultDto<IdentityRoleDto>> GetListAsync(GetIdentityRoleListInput input)
Parameters
Type | Name | Description |
---|---|---|
GetIdentityRoleListInput | input |
Returns
Type | Description |
---|---|
Task<PagedResultDto<IdentityRoleDto>> |
GetListAsync(GetIdentityRolesInput)
Declaration
[HttpGet]
public virtual Task<PagedResultDto<IdentityRoleDto>> GetListAsync(GetIdentityRolesInput input)
Parameters
Type | Name | Description |
---|---|---|
GetIdentityRolesInput | input |
Returns
Type | Description |
---|---|
Task<PagedResultDto<IdentityRoleDto>> |
MoveAllUsersAsync(Guid, Guid?)
Declaration
[HttpPut]
[Route("{id}/move-all-users")]
public virtual Task MoveAllUsersAsync(Guid id, Guid? roleId)
Parameters
Type | Name | Description |
---|---|---|
Guid | id | |
Guid? | roleId |
Returns
Type | Description |
---|---|
Task |
UpdateAsync(Guid, IdentityRoleUpdateDto)
Declaration
[HttpPut]
[Route("{id}")]
public virtual Task<IdentityRoleDto> UpdateAsync(Guid id, IdentityRoleUpdateDto input)
Parameters
Type | Name | Description |
---|---|---|
Guid | id | |
IdentityRoleUpdateDto | input |
Returns
Type | Description |
---|---|
Task<IdentityRoleDto> |
UpdateClaimsAsync(Guid, List<IdentityRoleClaimDto>)
Declaration
[HttpPut]
[Route("{id}/claims")]
public virtual Task UpdateClaimsAsync(Guid id, List<IdentityRoleClaimDto> input)
Parameters
Type | Name | Description |
---|---|---|
Guid | id | |
List<IdentityRoleClaimDto> | input |
Returns
Type | Description |
---|---|
Task |