Beispiel #1
0
 /// <summary>
 /// Revoke your approval of a commit. You can remove approvals on behalf of the authenticated account.
 /// </summary>
 /// <param name="revision">The commit's SHA1.</param>
 /// <returns></returns>
 public object DeleteCommitApproval(string revision)
 {
     return(_repositoriesEndPoint.DeleteCommitApproval(_accountName, _repository, revision));
 }
 /// <summary>
 /// Revoke your approval of a commit. You can remove approvals on behalf of the authenticated account.
 /// </summary>
 /// <param name="revision">The SHA1 of the commit.</param>
 /// <returns></returns>
 public void DeleteCommitApproval(string revision)
 {
     _repositoriesEndPoint.DeleteCommitApproval(_accountName, _slug, revision);
 }