|
@@ -13,6 +13,7 @@ using GxPress.Result.App.GroupUser;
|
|
|
using GxPress.Result.App.Topic;
|
|
|
using GxPress.Result.Web;
|
|
|
using GxPress.Service.Interface.Group;
|
|
|
+using GxPress.Service.Interface.GroupCategory;
|
|
|
using GxPress.Service.Interface.Topic;
|
|
|
using Microsoft.AspNetCore.Authorization;
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
@@ -38,11 +39,12 @@ namespace GxPress.Api.AppControllers
|
|
|
private readonly ITopicService _topicService;
|
|
|
private readonly IGroupCategoryRepository groupCategoryRepository;
|
|
|
private readonly IUserGroupCategoryRepository userGroupCategoryRepository;
|
|
|
+ private readonly IGroupCategoryService groupCategoryService;
|
|
|
public GroupController(ILogger<GroupController> logger, IGroupRepository groupRepository,
|
|
|
IGroupFolderRepository groupFolderRepository, IGroupUserRepository groupUserRepository,
|
|
|
ILoginContext loginContext, IGroupService groupService, ITopicRepository topicRepository,
|
|
|
ITopicService topicService, IGroupCategoryRepository groupCategoryRepository,
|
|
|
- IUserGroupCategoryRepository userGroupCategoryRepository)
|
|
|
+ IUserGroupCategoryRepository userGroupCategoryRepository,IGroupCategoryService groupCategoryService)
|
|
|
{
|
|
|
_logger = logger;
|
|
|
_groupFolderRepository = groupFolderRepository;
|
|
@@ -54,6 +56,7 @@ namespace GxPress.Api.AppControllers
|
|
|
_topicService = topicService;
|
|
|
this.groupCategoryRepository = groupCategoryRepository;
|
|
|
this.userGroupCategoryRepository=userGroupCategoryRepository;
|
|
|
+ this.groupCategoryService=groupCategoryService;
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
@@ -247,7 +250,7 @@ namespace GxPress.Api.AppControllers
|
|
|
[AllowAnonymous]
|
|
|
public async Task<IEnumerable<GroupCategoryResult>> GetGroupCategoryAsync(int parentId)
|
|
|
{
|
|
|
- return await groupCategoryRepository.GetAllAsync(parentId);
|
|
|
+ return await groupCategoryService.GetGroupCategoryAsync(parentId, _loginContext.AccountId);
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 或者最近使用的小组
|