Exemplo n.º 1
0
        public async Task <IActionResult> GetTopicsFollowedByUserAsync([FromRoute] string uId)
        {
            var topics = await topicObj.GetTopicsFollowedByUserAsync(uId);

            return(Ok(topics));
        }