|
@@ -66,7 +66,7 @@ namespace GxPress.Api.WebControllers
|
|
|
private readonly IMapper _mapper;
|
|
|
public UserController(IUserRepository userRepository, IOptions<JwtOptions> jwtOptions,
|
|
|
ILogger<UserController> logger, IDepartmentRepository departmentRepository, ILoginContext loginContext,
|
|
|
- IUserService userService, IFileLibraryRepository fileLibraryRepository, IDistributedCache cache, IUserLoginRepository userLoginRepository, IAddressBookGroupRepository addressBookGroupRepository, IAddressBookGroupUserRepository _addressBookGroupUserRepository, IFeedbackRepository _feedbackRepository, IFriendsRepository friendsRepository, IDepartmentService departmentService, IUserMiddleService userMiddleService,IMapper _mapper)
|
|
|
+ IUserService userService, IFileLibraryRepository fileLibraryRepository, IDistributedCache cache, IUserLoginRepository userLoginRepository, IAddressBookGroupRepository addressBookGroupRepository, IAddressBookGroupUserRepository _addressBookGroupUserRepository, IFeedbackRepository _feedbackRepository, IFriendsRepository friendsRepository, IDepartmentService departmentService, IUserMiddleService userMiddleService, IMapper _mapper)
|
|
|
{
|
|
|
_userRepository = userRepository;
|
|
|
_departmentRepository = departmentRepository;
|
|
@@ -83,7 +83,7 @@ namespace GxPress.Api.WebControllers
|
|
|
this.friendsRepository = friendsRepository;
|
|
|
this.departmentService = departmentService;
|
|
|
this.userMiddleService = userMiddleService;
|
|
|
- this._mapper=_mapper;
|
|
|
+ this._mapper = _mapper;
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 登录
|
|
@@ -454,6 +454,7 @@ namespace GxPress.Api.WebControllers
|
|
|
[HttpPost("user-list")]
|
|
|
public async Task<DepartmentUserResult> GetDepartmentUserResult(DepartmentUserRequest request)
|
|
|
{
|
|
|
+ request.UserId = _loginContext.AccountId;
|
|
|
return await departmentService.GetDepartmentUserResultAsync(request);
|
|
|
}
|
|
|
/// <summary>
|