mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
66 lines
2.6 KiB
C#
66 lines
2.6 KiB
C#
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Octokit
|
|
{
|
|
public class ReactionsClient : ApiClient, IReactionsClient
|
|
{
|
|
/// <summary>
|
|
/// Instantiates a new GitHub Reactions API client
|
|
/// </summary>
|
|
/// <param name="apiConnection">An API connection</param>
|
|
public ReactionsClient(IApiConnection apiConnection)
|
|
: base(apiConnection)
|
|
{
|
|
CommitComment = new CommitCommentReactionsClient(apiConnection);
|
|
Issue = new IssueReactionsClient(apiConnection);
|
|
IssueComment = new IssueCommentReactionsClient(apiConnection);
|
|
PullRequestReviewComment = new PullRequestReviewCommentReactionsClient(apiConnection);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Access GitHub's Reactions API for Commit Comments.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Refer to the API documentation for more information: https://developer.github.com/v3/reactions/
|
|
/// </remarks>
|
|
public ICommitCommentReactionsClient CommitComment { get; private set; }
|
|
|
|
/// <summary>
|
|
/// Access GitHub's Reactions API for Issues.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Refer to the API documentation for more information: https://developer.github.com/v3/reactions/
|
|
/// </remarks>
|
|
public IIssueReactionsClient Issue { get; private set; }
|
|
|
|
/// <summary>
|
|
/// Access GitHub's Reactions API for Issue Comments.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Refer to the API documentation for more information: https://developer.github.com/v3/reactions/
|
|
/// </remarks>
|
|
public IIssueCommentReactionsClient IssueComment { get; private set; }
|
|
|
|
/// <summary>
|
|
/// Access GitHub's Reactions API for Pull Request Review Comments.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Refer to the API documentation for more information: https://developer.github.com/v3/reactions/
|
|
/// </remarks>
|
|
public IPullRequestReviewCommentReactionsClient PullRequestReviewComment { get; private set; }
|
|
|
|
/// <summary>
|
|
/// Delete a reaction.
|
|
/// </summary>
|
|
/// <remarks>https://developer.github.com/v3/reactions/#delete-a-reaction</remarks>
|
|
/// <param name="number">The reaction id</param>
|
|
/// <returns></returns>
|
|
[ManualRoute("DELETE", "/reactions/{number}")]
|
|
public Task Delete(int number)
|
|
{
|
|
return ApiConnection.Delete(ApiUrls.Reactions(number), new object(), AcceptHeaders.ReactionsPreview);
|
|
}
|
|
}
|
|
}
|