mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-01 18:35:35 +00:00
added new api url
This commit is contained in:
@@ -330,6 +330,17 @@ namespace Octokit
|
||||
return "repos/{0}/{1}/issues/{2}/reactions".FormatUri(owner, name, number);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns the <see cref="Uri"/> for the reaction of a specified issue.
|
||||
/// </summary>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="number">The issue number</param>
|
||||
/// <returns></returns>
|
||||
public static Uri IssueReactions(int repositoryId, int number)
|
||||
{
|
||||
return "repositories/{0}/issues/{1}/reactions".FormatUri(repositoryId, number);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns the <see cref="Uri"/> for the comments for all issues in a specific repo.
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user