Example #1
0
 /// <inheritdoc/>
 public Commit GetLatestCommitForCurrentUser(string org, string repository)
 {
     try
     {
         return(_decoratedService.GetLatestCommitForCurrentUser(org, repository));
     }
     catch (Exception ex)
     {
         LogError(ex, "GetLatestCommitForCurrentUser", org, repository);
         throw;
     }
 }
Example #2
0
 public Commit GetLatestCommitFromCurrentUser(string owner, string repository)
 {
     return(_sourceControl.GetLatestCommitForCurrentUser(owner, repository));
 }