pull/1614/head
tidusjar 7 years ago
parent 6d552563eb
commit fd58e80cea

@ -221,11 +221,6 @@ namespace Ombi.Schedule.Jobs.Ombi
{
using (var client = new WebClient())
{
ctx.WriteProgressBar();
client.DownloadProgressChanged += (s, e) =>
{
ctx.WriteProgressBar(e.ProgressPercentage);
};
await client.DownloadFileTaskAsync(requestUri, filename);
}
}

@ -88,7 +88,7 @@
<td>
<a [routerLink]="['/usermanagement/edit/' + u.id]" class="btn btn-sm btn-info-outline">Details/Edit</a>
</td>
<td>
<td *ngIf="customizationSettings">
<button *ngIf="!u.hasLoggedIn" (click)="welcomeEmail(u)" [disabled]="!customizationSettings.applicationUrl" class="btn btn-sm btn-info-outline">Send Welcome Email</button>
</td>
</tr>

@ -77,11 +77,9 @@ namespace Ombi
{
var result = new StringBuilder();
result.AppendLine("Hello, and welcome to the console application.");
result.AppendLine("This application takes in a data file and attempts to import that data into our systems.");
result.AppendLine("Hello, welcome to Ombi");
result.AppendLine("Valid options are:");
result.AppendLine(HelpText.AutoBuild(args, null, null));
result.AppendLine("Press any key to exit");
return result.ToString();
}

Loading…
Cancel
Save