Exemplo n.º 1
0
 /// <summary>
 /// Give your approval on a pull request. You can only approve a request on behalf of the authenticated account.
 /// This returns the participant object for the current user.
 /// </summary>
 /// <returns></returns>
 public PullRequestInfo ApprovePullRequest()
 {
     return(_repositoriesEndPoint.ApprovePullRequest(_accountName, _slug, _pullRequestId));
 }
Exemplo n.º 2
0
 internal PullRequestInfo ApprovePullRequest(int pullRequestId)
 {
     return(_repositoriesEndPoint.ApprovePullRequest(_accountName, _slug, pullRequestId));
 }
Exemplo n.º 3
0
 internal object ApprovePullRequest(int pullRequestId)
 {
     return(_repositoriesEndPoint.ApprovePullRequest(_accountName, _repository, pullRequestId));
 }
Exemplo n.º 4
0
 /// <summary>
 /// Give your approval on a pull request. You can only approve a request on behalf of the authenticated account.
 /// This returns the participant object for the current user.
 /// </summary>
 /// <returns></returns>
 public object ApprovePullRequest()
 {
     return(_repositoriesEndPoint.ApprovePullRequest(_accountName, _repository, _pullRequestId));
 }