예제 #1
0
        public IActionResult GetConversations()
        {
            var currentUser = GetCurrentUserProfile();

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