mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-08 04:40:54 +00:00
ID -> Id
This commit is contained in:
@@ -20,7 +20,7 @@ namespace Octokit.Reactive
|
||||
/// <summary>
|
||||
/// Gets all the available assignees (owner + collaborators) to which issues may be assigned.
|
||||
/// </summary>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="repositoryId">The Id of the repository</param>
|
||||
IObservable<User> GetAllForRepository(int repositoryId);
|
||||
|
||||
/// <summary>
|
||||
@@ -34,7 +34,7 @@ namespace Octokit.Reactive
|
||||
/// <summary>
|
||||
/// Gets all the available assignees (owner + collaborators) to which issues may be assigned.
|
||||
/// </summary>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="repositoryId">The Id of the repository</param>
|
||||
/// <param name="options">The options to change API's behaviour.</param>
|
||||
IObservable<User> GetAllForRepository(int repositoryId, ApiOptions options);
|
||||
|
||||
@@ -49,7 +49,7 @@ namespace Octokit.Reactive
|
||||
/// <summary>
|
||||
/// Checks to see if a user is an assignee for a repository.
|
||||
/// </summary>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="repositoryId">The Id of the repository</param>
|
||||
/// <param name="assignee">Username of the prospective assignee</param>
|
||||
IObservable<bool> CheckAssignee(int repositoryId, string assignee);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user