mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-03 11:05:56 +00:00
Add ApiOption overloads to methods on IRepoCollaboratorsClient (#1282)
This commit is contained in:
committed by
Brendan Forster
parent
159bc59c27
commit
63a8c1d70a
@@ -10,9 +10,18 @@ namespace Octokit.Reactive
|
||||
/// </summary>
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="repo">The name of the repository</param>
|
||||
/// <returns></returns>
|
||||
/// <returns>The list of <see cref="User"/>s for the specified repository.</returns>
|
||||
IObservable<User> GetAll(string owner, string repo);
|
||||
|
||||
/// <summary>
|
||||
/// Gets all the available collaborators on this repo.
|
||||
/// </summary>
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="repo">The name of the repository</param>
|
||||
/// <param name="options">Options for changing the API response</param>
|
||||
/// <returns>The list of <see cref="User"/>s for the specified repository.</returns>
|
||||
IObservable<User> GetAll(string owner, string repo, ApiOptions options);
|
||||
|
||||
/// <summary>
|
||||
/// Checks to see if a user is an assignee for a repository.
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user