Class AuditLogSettingsController
Implements
Inherited Members
Namespace: Volo.Abp.AuditLogging
Assembly: Volo.Abp.AuditLogging.HttpApi.dll
Syntax
[RemoteService(true, Name = "AbpAuditLogging")]
[Area("auditLogging")]
[Route("api/audit-logging/settings")]
public class AuditLogSettingsController : AbpControllerBase, IAvoidDuplicateCrossCuttingConcerns, IAuditLogSettingsAppService, IApplicationService, IRemoteService
Constructors
AuditLogSettingsController(IAuditLogSettingsAppService)
Declaration
public AuditLogSettingsController(IAuditLogSettingsAppService auditLogSettingsAppService)
Parameters
| Type | Name | Description |
|---|---|---|
| IAuditLogSettingsAppService | auditLogSettingsAppService |
Properties
AuditLogSettingsAppService
Declaration
protected IAuditLogSettingsAppService AuditLogSettingsAppService { get; }
Property Value
| Type | Description |
|---|---|
| IAuditLogSettingsAppService |
Methods
GetAsync()
Declaration
[HttpGet]
public Task<AuditLogSettingsDto> GetAsync()
Returns
| Type | Description |
|---|---|
| Task<AuditLogSettingsDto> |
GetGlobalAsync()
Declaration
[HttpGet]
[Route("global")]
public Task<AuditLogGlobalSettingsDto> GetGlobalAsync()
Returns
| Type | Description |
|---|---|
| Task<AuditLogGlobalSettingsDto> |
UpdateAsync(AuditLogSettingsDto)
Declaration
[HttpPut]
public Task UpdateAsync(AuditLogSettingsDto input)
Parameters
| Type | Name | Description |
|---|---|---|
| AuditLogSettingsDto | input |
Returns
| Type | Description |
|---|---|
| Task |
UpdateGlobalAsync(AuditLogGlobalSettingsDto)
Declaration
[HttpPut]
[Route("global")]
public Task UpdateGlobalAsync(AuditLogGlobalSettingsDto input)
Parameters
| Type | Name | Description |
|---|---|---|
| AuditLogGlobalSettingsDto | input |
Returns
| Type | Description |
|---|---|
| Task |