|
@@ -42,9 +42,9 @@ namespace GxPress.Api.AppControllers
|
|
|
private readonly IGroupCategoryService groupCategoryService;
|
|
|
public GroupController(ILogger<GroupController> logger, IGroupRepository groupRepository,
|
|
|
IGroupFolderRepository groupFolderRepository, IGroupUserRepository groupUserRepository,
|
|
|
- ILoginContext loginContext, IGroupService groupService, ITopicRepository topicRepository,
|
|
|
+ ILoginContext loginContext, IGroupService groupService, ITopicRepository topicRepository,
|
|
|
ITopicService topicService, IGroupCategoryRepository groupCategoryRepository,
|
|
|
- IUserGroupCategoryRepository userGroupCategoryRepository,IGroupCategoryService groupCategoryService)
|
|
|
+ IUserGroupCategoryRepository userGroupCategoryRepository, IGroupCategoryService groupCategoryService)
|
|
|
{
|
|
|
_logger = logger;
|
|
|
_groupFolderRepository = groupFolderRepository;
|
|
@@ -55,8 +55,8 @@ namespace GxPress.Api.AppControllers
|
|
|
_topicRepository = topicRepository;
|
|
|
_topicService = topicService;
|
|
|
this.groupCategoryRepository = groupCategoryRepository;
|
|
|
- this.userGroupCategoryRepository=userGroupCategoryRepository;
|
|
|
- this.groupCategoryService=groupCategoryService;
|
|
|
+ this.userGroupCategoryRepository = userGroupCategoryRepository;
|
|
|
+ this.groupCategoryService = groupCategoryService;
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
@@ -151,7 +151,16 @@ namespace GxPress.Api.AppControllers
|
|
|
{
|
|
|
return await _groupRepository.UpdateAsync(request);
|
|
|
}
|
|
|
-
|
|
|
+ /// <summary>
|
|
|
+ /// 是否添加到通讯录
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="groupId"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ [HttpPut("contacts/{groupId}")]
|
|
|
+ public async Task<bool> UpdateContactsAsync(int groupId)
|
|
|
+ {
|
|
|
+ return await _groupRepository.UpdateContactsAsync(groupId, _loginContext.AccountId);
|
|
|
+ }
|
|
|
/// <summary>
|
|
|
///设置权限
|
|
|
/// 1 超级管理员 2 管理员 3普通用户
|
|
@@ -250,7 +259,7 @@ namespace GxPress.Api.AppControllers
|
|
|
[AllowAnonymous]
|
|
|
public async Task<IEnumerable<GroupCategoryResult>> GetGroupCategoryAsync(int parentId)
|
|
|
{
|
|
|
- return await groupCategoryService.GetGroupCategoryAsync(parentId, _loginContext.AccountId);
|
|
|
+ return await groupCategoryService.GetGroupCategoryAsync(parentId, _loginContext.AccountId);
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 或者最近使用的小组
|