mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-19 04:49:33 -07:00
Small changes, we will actually see the episode cacher on the scheduled jobs page now
This commit is contained in:
parent
0657264dd3
commit
a38877d984
3 changed files with 9 additions and 8 deletions
|
@ -39,6 +39,7 @@ namespace PlexRequests.Core.SettingModels
|
||||||
UserRequestLimitResetter = 12;
|
UserRequestLimitResetter = 12;
|
||||||
PlexEpisodeCacher = 20;
|
PlexEpisodeCacher = 20;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int PlexAvailabilityChecker { get; set; }
|
public int PlexAvailabilityChecker { get; set; }
|
||||||
public int SickRageCacher { get; set; }
|
public int SickRageCacher { get; set; }
|
||||||
public int SonarrCacher { get; set; }
|
public int SonarrCacher { get; set; }
|
||||||
|
|
|
@ -35,6 +35,6 @@ namespace PlexRequests.Services.Jobs
|
||||||
public const string PlexChecker = "Plex Availability Cacher";
|
public const string PlexChecker = "Plex Availability Cacher";
|
||||||
public const string StoreCleanup = "Database Cleanup";
|
public const string StoreCleanup = "Database Cleanup";
|
||||||
public const string RequestLimitReset = "Request Limit Reset";
|
public const string RequestLimitReset = "Request Limit Reset";
|
||||||
public const string EpisodeCacher = "Request Limit Reset";
|
public const string EpisodeCacher = "Plex Episode Cacher";
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -136,13 +136,13 @@
|
||||||
{{#if episodes}}
|
{{#if episodes}}
|
||||||
<div id="{{requestId}}toolTipContent">
|
<div id="{{requestId}}toolTipContent">
|
||||||
{{#each episodes}}
|
{{#each episodes}}
|
||||||
Season: {{this.seasonNumber}}
|
Season: {{this.seasonNumber}}
|
||||||
<br />
|
<br />
|
||||||
Episodes Requested:
|
Episodes Requested:
|
||||||
{{#each this.episodes}}
|
{{#each this.episodes}}
|
||||||
{{this}}
|
{{this}}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
<hr />
|
<hr />
|
||||||
{{/each}}
|
{{/each}}
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue