Example #1
0
 /// <inheritdoc/>
 public void VerifyCloneExists(string org, string repository)
 {
     try
     {
         _decoratedService.VerifyCloneExists(org, repository);
     }
     catch (Exception ex)
     {
         LogError(ex, "VerifyCloneExists", org, repository);
         throw;
     }
 }
Example #2
0
 /// <summary>
 /// Default action for the designer.
 /// </summary>
 /// <returns>default view for the app builder.</returns>
 public IActionResult Index(string org, string app)
 {
     _sourceControl.VerifyCloneExists(org, app);
     return(View());
 }