mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-07 20:30:41 +00:00
Make Repository Id a long, it's going to grow...
This commit is contained in:
@@ -44,7 +44,7 @@ namespace Octokit.Reactive
|
||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment</remarks>
|
||||
/// <param name="repositoryId">The Id of the repository</param>
|
||||
/// <param name="number">The comment id</param>
|
||||
public IObservable<Reaction> GetAll(int repositoryId, int number)
|
||||
public IObservable<Reaction> GetAll(long repositoryId, int number)
|
||||
{
|
||||
return _connection.GetAndFlattenAllPages<Reaction>(ApiUrls.PullRequestReviewCommentReaction(repositoryId, number), null, AcceptHeaders.ReactionsPreview);
|
||||
}
|
||||
@@ -73,7 +73,7 @@ namespace Octokit.Reactive
|
||||
/// <param name="repositoryId">The owner of the repository</param>
|
||||
/// <param name="number">The comment id</param>
|
||||
/// <param name="reaction">The reaction to create</param>
|
||||
public IObservable<Reaction> Create(int repositoryId, int number, NewReaction reaction)
|
||||
public IObservable<Reaction> Create(long repositoryId, int number, NewReaction reaction)
|
||||
{
|
||||
Ensure.ArgumentNotNull(reaction, "reaction");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user