Ejemplo n.º 1
0
 /// <summary>
 /// Give your approval on a commit.
 /// You can only approve a comment on behalf of the authenticated account.  This returns the participant object for the current user.
 /// </summary>
 /// <param name="revision">The commit's SHA1.</param>
 /// <returns></returns>
 public async Task <object> ApproveCommit(string revision)
 {
     return(await _repositoriesEndPoint.ApproveCommit(_accountName, _repository, revision));
 }