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

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

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

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

Loading…
Cancel
Save