mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
create classes for standalone reaction client and CommitCommentReaction
This commit is contained in:
@@ -99,6 +99,7 @@ namespace Octokit
|
||||
Search = new SearchClient(apiConnection);
|
||||
SshKey = new SshKeysClient(apiConnection);
|
||||
User = new UsersClient(apiConnection);
|
||||
Reaction = new ReactionsClient(apiConnection);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -305,6 +306,14 @@ namespace Octokit
|
||||
/// </remarks>
|
||||
public IEnterpriseClient Enterprise { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// Access GitHub's Reactions API
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Refer to the API documentation for more information: https://developer.github.com/v3/reactions/
|
||||
/// </remarks>
|
||||
public IReactionsClient Reaction { get; private set; }
|
||||
|
||||
static Uri FixUpBaseUri(Uri uri)
|
||||
{
|
||||
Ensure.ArgumentNotNull(uri, "uri");
|
||||
|
||||
Reference in New Issue
Block a user