This commit is contained in:
tidusjar 2017-10-15 20:06:17 +01:00
parent 6d552563eb
commit fd58e80cea
3 changed files with 2 additions and 9 deletions

View file

@ -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);
}
}

View file

@ -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>

View file

@ -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();
}