Exemplo n.º 1
0
        public async Task <IActionResult> FollowGroup(int groupId, int userId)
        {
            var result = await _service.FollowGroup(groupId, userId);

            return(Ok(result));
        }