using System.Threading.Tasks; using GxPress.Common.Page; using GxPress.Repository.Interface; using GxPress.Request.Comment; using GxPress.Result.Comment; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; namespace GxPress.Api.AdminControllers { /// /// 文章评论 通知评论 /// [Route("api/admin/comment")] [ApiController] public class AdminCommentController : ControllerBase { private readonly ICommentRepository _commentRepository; public AdminCommentController(ICommentRepository commentRepository) { _commentRepository = commentRepository; } /// /// 分页显示数据 /// /// /// [HttpPost("page")] public async Task> GetPagedList([FromBody] CommentSearchPageRequest request) { return await _commentRepository.GetPagedList(request); } /// /// 删除 /// /// /// [HttpDelete("delete")] [AllowAnonymous] public async Task Delete([FromBody] CommentDeleteRequest request) { return await _commentRepository.DeleteCommentAsync(request); } } }