Show / Hide Table of Contents

Class IdentitySettingsController

Inheritance
object
IdentitySettingsController
Implements
IIdentitySettingsAppService
IApplicationService
IRemoteService
Namespace: Volo.Abp.Identity
Assembly: Volo.Abp.Identity.Pro.HttpApi.dll
Syntax
[Area("identity")]
[Route("api/identity/settings")]
public class IdentitySettingsController : AbpControllerBase, IIdentitySettingsAppService, IApplicationService, IRemoteService

Constructors

IdentitySettingsController(IIdentitySettingsAppService)

Declaration
public IdentitySettingsController(IIdentitySettingsAppService identitySettingsAppService)
Parameters
Type Name Description
IIdentitySettingsAppService identitySettingsAppService

Properties

IdentitySettingsAppService

Declaration
protected IIdentitySettingsAppService IdentitySettingsAppService { get; }
Property Value
Type Description
IIdentitySettingsAppService

Methods

GetAsync()

Declaration
[HttpGet]
public virtual Task<IdentitySettingsDto> GetAsync()
Returns
Type Description
Task<IdentitySettingsDto>

GetLdapAsync()

Declaration
[HttpGet]
[Route("ldap")]
public virtual Task<IdentityLdapSettingsDto> GetLdapAsync()
Returns
Type Description
Task<IdentityLdapSettingsDto>

GetOAuthAsync()

Declaration
[HttpGet]
[Route("oauth")]
public Task<IdentityOAuthSettingsDto> GetOAuthAsync()
Returns
Type Description
Task<IdentityOAuthSettingsDto>

UpdateAsync(IdentitySettingsDto)

Declaration
[HttpPut]
public virtual Task UpdateAsync(IdentitySettingsDto input)
Parameters
Type Name Description
IdentitySettingsDto input
Returns
Type Description
Task

UpdateLdapAsync(IdentityLdapSettingsDto)

Declaration
[HttpPut]
[Route("ldap")]
public virtual Task UpdateLdapAsync(IdentityLdapSettingsDto input)
Parameters
Type Name Description
IdentityLdapSettingsDto input
Returns
Type Description
Task

UpdateOAuthAsync(IdentityOAuthSettingsDto)

Declaration
[HttpPut]
[Route("oauth")]
public Task UpdateOAuthAsync(IdentityOAuthSettingsDto input)
Parameters
Type Name Description
IdentityOAuthSettingsDto input
Returns
Type Description
Task

Implements

IIdentitySettingsAppService
Volo.Abp.Application.Services.IApplicationService
Volo.Abp.IRemoteService
In this article
Back to top Powered by Volosoft