コード例 #1
0
ファイル: UserController.cs プロジェクト: dbyndu/MatrimonyAPI
        public ActionResult ChangePasswordHideProfile(UserChangePassword changePassword)
        {
            var response = _userService.ChangePassword(changePassword);

            return(Ok(APIResponse.CreateResponse(_jwtAuthentication.Value, _httpContextAccessor.HttpContext.Request, response)));
        }