Example #1
0
        public async Task DeleteComment(ICommentViewModel comment)
        {
            await service.DeleteComment(
                HostAddress.Create(Repository.CloneUrl),
                Repository.Owner,
                Repository.Name,
                comment.DatabaseId).ConfigureAwait(true);

            timeline.Remove(comment);
        }