public ActionResult ChangePasswordHideProfile(UserChangePassword changePassword)
        {
            var response = _userService.ChangePassword(changePassword);

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