Class PageFeedbackAdminController
Inheritance
PageFeedbackAdminController
Implements
IApplicationService
IRemoteService
Assembly: Volo.CmsKit.Pro.Admin.HttpApi.dll
Syntax
[Area("cms-kit-pro-admin")]
[Route("api/cms-kit-admin/page-feedback")]
[Authorize("CmsKit.PageFeedback")]
public class PageFeedbackAdminController : CmsKitProAdminController, IPageFeedbackAdminAppService, IReadOnlyAppService<PageFeedbackDto, Guid, GetPageFeedbackListInput>, IReadOnlyAppService<PageFeedbackDto, PageFeedbackDto, Guid, GetPageFeedbackListInput>, IApplicationService, IRemoteService, IUpdateAppService<PageFeedbackDto, Guid, UpdatePageFeedbackDto>, IDeleteAppService<Guid>
Constructors
PageFeedbackAdminController(IPageFeedbackAdminAppService)
Declaration
public PageFeedbackAdminController(IPageFeedbackAdminAppService pageFeedbackAdminAppService)
Parameters
Properties
PageFeedbackAdminAppService
Declaration
protected IPageFeedbackAdminAppService PageFeedbackAdminAppService { get; }
Property Value
Methods
DeleteAsync(Guid)
Declaration
[HttpDelete]
[Route("{id}")]
[Authorize("CmsKit.PageFeedback.Delete")]
public Task DeleteAsync(Guid id)
Parameters
Type |
Name |
Description |
Guid |
id |
|
Returns
GetAsync(Guid)
Declaration
[HttpGet]
[Route("{id}")]
public Task<PageFeedbackDto> GetAsync(Guid id)
Parameters
Type |
Name |
Description |
Guid |
id |
|
Returns
GetEntityTypesAsync()
Declaration
[HttpGet]
[Route("entity-types")]
public Task<List<string>> GetEntityTypesAsync()
Returns
GetListAsync(GetPageFeedbackListInput)
Declaration
[HttpGet]
public Task<PagedResultDto<PageFeedbackDto>> GetListAsync(GetPageFeedbackListInput input)
Parameters
Returns
GetSettingsAsync()
Declaration
[HttpGet]
[Route("settings")]
[Authorize("CmsKit.PageFeedback.Settings")]
public Task<List<PageFeedbackSettingDto>> GetSettingsAsync()
Returns
UpdateAsync(Guid, UpdatePageFeedbackDto)
Declaration
[HttpPut]
[Route("{id}")]
[Authorize("CmsKit.PageFeedback.Update")]
public Task<PageFeedbackDto> UpdateAsync(Guid id, UpdatePageFeedbackDto dto)
Parameters
Returns
UpdateSettingsAsync(UpdatePageFeedbackSettingsInput)
Declaration
[HttpPut]
[Route("settings")]
[Authorize("CmsKit.PageFeedback.Settings")]
public Task UpdateSettingsAsync(UpdatePageFeedbackSettingsInput input)
Parameters
Returns
Implements
Volo.Abp.Application.Services.IReadOnlyAppService<,,>
Volo.Abp.Application.Services.IReadOnlyAppService<,,,>
Volo.Abp.Application.Services.IApplicationService
Volo.Abp.IRemoteService
Volo.Abp.Application.Services.IUpdateAppService<,,>
Volo.Abp.Application.Services.IDeleteAppService<>