ArticleGroupController.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using GxPress.Auth;
  4. using GxPress.Entity;
  5. using GxPress.Repository.Interface;
  6. using GxPress.Request.ArticleGroup;
  7. using Microsoft.AspNetCore.Authorization;
  8. using Microsoft.AspNetCore.Mvc;
  9. namespace GxPress.Api.AppControllers
  10. {
  11. /// <summary>
  12. /// 文章组
  13. /// </summary>
  14. [Route("api/app/article-group")]
  15. [ApiController]
  16. [Authorize]
  17. public class ArticleGroupController : Controller
  18. {
  19. private readonly IArticleGroupRepository _processGroupRepository;
  20. private readonly ILoginContext _loginContext;
  21. public ArticleGroupController(IArticleGroupRepository processGroupRepository, ILoginContext loginContext)
  22. {
  23. _processGroupRepository = processGroupRepository;
  24. _loginContext = loginContext;
  25. }
  26. /// <summary>
  27. /// 列表
  28. /// </summary>
  29. /// <returns></returns>
  30. [HttpGet("list")]
  31. public async Task<IEnumerable<ArticleGroup>> GetList()
  32. {
  33. return await _processGroupRepository.GetListAsync(_loginContext.AccountId);
  34. }
  35. }
  36. }