Exemplo n.º 1
0
        public async Task <IActionResult> GetMessageRoomDetails(int userId, int interestUserId)
        {
            var response = await _userService.GetMessageRoomDetails(userId, interestUserId);

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