public async Task <IdeaCollaborationStatsDto> Update(string ideaId, bool like)
        {
            await _ideaCommentService.UpdateAsync(ideaId, _userIdentityProvider.GetUserId(), like);

            return(await _ideaCommentService.GetStatsAsync(ideaId));
        }