mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-21 22:55:12 +00:00
Graduate review requests to what eventually shipped (#2153)
This commit is contained in:
@@ -18,17 +18,7 @@ namespace Octokit.Reactive
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <param name="number">The pull request number</param>
|
||||
IObservable<User> GetAll(string owner, string name, int number);
|
||||
|
||||
/// <summary>
|
||||
/// Gets review requests for a specified pull request.
|
||||
/// </summary>
|
||||
/// <remarks>https://developer.github.com/v3/pulls/review_requests/#list-review-requests</remarks>
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <param name="number">The pull request number</param>
|
||||
/// <param name="options">Options for changing the API response</param>
|
||||
IObservable<User> GetAll(string owner, string name, int number, ApiOptions options);
|
||||
IObservable<RequestedReviews> Get(string owner, string name, int number);
|
||||
|
||||
/// <summary>
|
||||
/// Gets review requests for a specified pull request.
|
||||
@@ -36,16 +26,7 @@ namespace Octokit.Reactive
|
||||
/// <remarks>https://developer.github.com/v3/pulls/review_requests/#list-review-requests</remarks>
|
||||
/// <param name="repositoryId">The Id of the repository</param>
|
||||
/// <param name="number">The pull request number</param>
|
||||
IObservable<User> GetAll(long repositoryId, int number);
|
||||
|
||||
/// <summary>
|
||||
/// Gets review requests for a specified pull request.
|
||||
/// </summary>
|
||||
/// <remarks>https://developer.github.com/v3/pulls/review_requests/#list-review-requests</remarks>
|
||||
/// <param name="repositoryId">The Id of the repository</param>
|
||||
/// <param name="number">The pull request number</param>
|
||||
/// <param name="options">Options for changing the API response</param>
|
||||
IObservable<User> GetAll(long repositoryId, int number, ApiOptions options);
|
||||
IObservable<RequestedReviews> Get(long repositoryId, int number);
|
||||
|
||||
/// <summary>
|
||||
/// Creates review requests on a pull request for specified users.
|
||||
@@ -85,4 +66,4 @@ namespace Octokit.Reactive
|
||||
/// <param name="users">List of logins of users that will be not longer requested for review</param>
|
||||
IObservable<Unit> Delete(long repositoryId, int number, PullRequestReviewRequest users);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user