mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-04 03:16:11 +00:00
add PullRequestReviewCommentReactionClient
This commit is contained in:
@@ -1,19 +1,20 @@
|
||||
using Octokit.Reactive.Internal;
|
||||
using System;
|
||||
using System.Reactive.Linq;
|
||||
using System.Reactive.Threading.Tasks;
|
||||
|
||||
namespace Octokit.Reactive
|
||||
{
|
||||
public class ObservableIssueCommentReactionsClient : IObservableIssueCommentReactionsClient
|
||||
{
|
||||
readonly ICommitCommentReactionsClient _client;
|
||||
readonly IIssueCommentReactionsClient _client;
|
||||
readonly IConnection _connection;
|
||||
|
||||
public ObservableIssueCommentReactionsClient(IGitHubClient client)
|
||||
{
|
||||
Ensure.ArgumentNotNull(client, "client");
|
||||
|
||||
_client = client.Reaction.CommitComment;
|
||||
_client = client.Reaction.IssueComment;
|
||||
_connection = client.Connection;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user