|
@@ -31,10 +31,10 @@ namespace GxPress.Api.AppControllers
|
|
|
private readonly ITopicGroupRepository _topicGroupRepository;
|
|
|
private readonly ITopicGroupUserRepository _topicGroupUserRepository;
|
|
|
private readonly IMiddleService _middleService;
|
|
|
-
|
|
|
+ private readonly ITopicGroupService topicGroupService;
|
|
|
public TopicController(ILogger<TopicController> logger, ITopicRepository repository, ILoginContext loginContext,
|
|
|
ITopicService topicService, ITopicGroupRepository topicGroupRepository,
|
|
|
- ITopicGroupUserRepository topicGroupUserRepository, IMiddleService middleService)
|
|
|
+ ITopicGroupUserRepository topicGroupUserRepository, IMiddleService middleService, ITopicGroupService topicGroupService)
|
|
|
{
|
|
|
_logger = logger;
|
|
|
_topicRepository = repository;
|
|
@@ -43,6 +43,7 @@ namespace GxPress.Api.AppControllers
|
|
|
_topicGroupRepository = topicGroupRepository;
|
|
|
_topicGroupUserRepository = topicGroupUserRepository;
|
|
|
_middleService = middleService;
|
|
|
+ this.topicGroupService = topicGroupService;
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
@@ -100,12 +101,20 @@ namespace GxPress.Api.AppControllers
|
|
|
/// 获取用户话题分组
|
|
|
/// </summary>
|
|
|
/// <returns></returns>
|
|
|
- [HttpPost("group")]
|
|
|
+ [HttpGet("group")]
|
|
|
public async Task<IEnumerable<TopicGroup>> GetTopicGroups()
|
|
|
{
|
|
|
- return await _topicGroupRepository.GetTopicGroupsAsync(_loginContext.AccountId);
|
|
|
+ return await topicGroupService.GetTopicGroupsAsync(_loginContext.AccountId);
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 获取用户话题分组集合
|
|
|
+ /// </summary>
|
|
|
+ /// <returns></returns>
|
|
|
+ [HttpGet("list-group")]
|
|
|
+ public async Task<IEnumerable<TopicGroup>> GetListTopicGroupsAsync()
|
|
|
+ {
|
|
|
+ return await topicGroupService.GetListTopicGroupsAsync(_loginContext.AccountId);
|
|
|
}
|
|
|
-
|
|
|
/// <summary>
|
|
|
/// 添加话题分组
|
|
|
/// </summary>
|