Class IdentitySettingsController
Inheritance
IdentitySettingsController
Implements
IApplicationService
IRemoteService
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
Properties
IdentitySettingsAppService
Declaration
protected IIdentitySettingsAppService IdentitySettingsAppService { get; }
Property Value
Methods
GetAsync()
Declaration
[HttpGet]
public virtual Task<IdentitySettingsDto> GetAsync()
Returns
GetLdapAsync()
Declaration
[HttpGet]
[Route("ldap")]
public virtual Task<IdentityLdapSettingsDto> GetLdapAsync()
Returns
GetOAuthAsync()
Declaration
[HttpGet]
[Route("oauth")]
public Task<IdentityOAuthSettingsDto> GetOAuthAsync()
Returns
UpdateAsync(IdentitySettingsDto)
Declaration
[HttpPut]
public virtual Task UpdateAsync(IdentitySettingsDto input)
Parameters
Returns
UpdateLdapAsync(IdentityLdapSettingsDto)
Declaration
[HttpPut]
[Route("ldap")]
public virtual Task UpdateLdapAsync(IdentityLdapSettingsDto input)
Parameters
Returns
UpdateOAuthAsync(IdentityOAuthSettingsDto)
Declaration
[HttpPut]
[Route("oauth")]
public Task UpdateOAuthAsync(IdentityOAuthSettingsDto input)
Parameters
Returns
Implements
Volo.Abp.Application.Services.IApplicationService
Volo.Abp.IRemoteService