mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-05 03:30:34 +00:00
Update clients
This commit is contained in:
@@ -16,7 +16,7 @@ namespace Octokit
|
||||
/// <param name="repo">The name of the repository</param>
|
||||
/// <param name="number">The number of the issue</param>
|
||||
/// <returns>The list of labels</returns>
|
||||
Task<IReadOnlyList<Label>> GetForIssue(string owner, string repo, int number);
|
||||
Task<IReadOnlyList<Label>> GetAllForIssue(string owner, string repo, int number);
|
||||
|
||||
/// <summary>
|
||||
/// Gets all labels for the repository.
|
||||
@@ -27,7 +27,7 @@ namespace Octokit
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="repo">The name of the repository</param>
|
||||
/// <returns>The list of labels</returns>
|
||||
Task<IReadOnlyList<Label>> GetForRepository(string owner, string repo);
|
||||
Task<IReadOnlyList<Label>> GetAllForRepository(string owner, string repo);
|
||||
|
||||
/// <summary>
|
||||
/// Gets a single Label by name.
|
||||
@@ -141,6 +141,6 @@ namespace Octokit
|
||||
/// <param name="repo">The name of the repository</param>
|
||||
/// <param name="number">The number of the milestone</param>
|
||||
/// <returns></returns>
|
||||
Task<IReadOnlyList<Label>> GetForMilestone(string owner, string repo, int number);
|
||||
Task<IReadOnlyList<Label>> GetAllForMilestone(string owner, string repo, int number);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user