mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07:00
Added ImageLink helpers for Ajax and Html links.
Added run button to System/Jobs.
This commit is contained in:
parent
ed566e6e9a
commit
9264dcdf88
8 changed files with 99 additions and 3 deletions
|
@ -184,6 +184,17 @@ namespace NzbDrone.Core.Jobs
|
|||
|
||||
}
|
||||
|
||||
public virtual bool QueueJob(string jobTypeString)
|
||||
{
|
||||
var type = Type.GetType(jobTypeString);
|
||||
|
||||
if (type == null)
|
||||
return false;
|
||||
|
||||
QueueJob(type);
|
||||
return true;
|
||||
}
|
||||
|
||||
private void ProcessQueue()
|
||||
{
|
||||
try
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue