public IActionResult GetConversations()
        {
            var currentUser = GetCurrentUserProfile();

            return(Ok(_userMessageRepository.GetConversationsByUser(currentUser.Id)));
        }