李昊 4 years ago
parent
commit
c18e3c60ff
1 changed files with 15 additions and 1 deletions
  1. 15 1
      gx_api/GxPress/Api/GxPress.Api/WebControllers/WebGroupController.cs

+ 15 - 1
gx_api/GxPress/Api/GxPress.Api/WebControllers/WebGroupController.cs

@@ -2,9 +2,11 @@ using System.Collections.Generic;
 using System.Threading.Tasks;
 using GxPress.Auth;
 using GxPress.Repository.Interface;
+using GxPress.Repository.Interface.Group;
 using GxPress.Request.App.Group;
 using GxPress.Request.App.GroupUser;
 using GxPress.Result.App.Group;
+using GxPress.Result.Web;
 using GxPress.Service.Interface.Group;
 using GxPress.Service.Interface.Topic;
 using Microsoft.AspNetCore.Authorization;
@@ -28,9 +30,10 @@ namespace GxPress.Api.WebControllers
         private readonly ILoginContext _loginContext;
         private readonly ITopicRepository _topicRepository;
         private readonly ITopicService _topicService;
+        private readonly IGroupCategroyRepository groupCategroyRepository;
         public WebGroupController(IGroupRepository groupRepository,
             IGroupFolderRepository groupFolderRepository, IGroupUserRepository groupUserRepository,
-            ILoginContext loginContext, IGroupService groupService, ITopicRepository topicRepository, ITopicService topicService)
+            ILoginContext loginContext, IGroupService groupService, ITopicRepository topicRepository, ITopicService topicService, IGroupCategroyRepository groupCategroyRepository)
         {
             _groupFolderRepository = groupFolderRepository;
             _groupRepository = groupRepository;
@@ -39,6 +42,7 @@ namespace GxPress.Api.WebControllers
             _groupService = groupService;
             _topicRepository = topicRepository;
             _topicService = topicService;
+            this.groupCategroyRepository = groupCategroyRepository;
         }
         /// <summary>
         /// 新建小组
@@ -72,5 +76,15 @@ namespace GxPress.Api.WebControllers
         {
             return await _groupService.GetAllAsync(categoryId);
         }
+        /// <summary>
+        /// 根据parendId获取
+        /// </summary>
+        /// <param name="parentId"></param>
+        /// <returns></returns>
+        [HttpGet("group-category/{parentId}")]
+        public async Task<IEnumerable<GroupCategoryResult>> GetGroupCategoryAsync(int parentId)
+        {
+            return await groupCategroyRepository.GetAllAsync(parentId);
+        }
     }
 }