mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
Added the ability to select certain libraries in jellyfin
This commit is contained in:
parent
132c935c28
commit
fc7df0e11b
11 changed files with 199 additions and 68 deletions
|
@ -17,5 +17,13 @@ namespace Ombi.Core.Settings.Models.External
|
|||
public string AdministratorId { get; set; }
|
||||
public string ServerHostname { get; set; }
|
||||
public bool EnableEpisodeSearching { get; set; }
|
||||
public List<EmbySelectedLibraries> EmbySelectedLibraries { get; set; } = new List<EmbySelectedLibraries>();
|
||||
}
|
||||
|
||||
public class EmbySelectedLibraries
|
||||
{
|
||||
public int Key { get; set; }
|
||||
public string Title { get; set; } // Name is for display purposes
|
||||
public bool Enabled { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -17,5 +17,14 @@ namespace Ombi.Core.Settings.Models.External
|
|||
public string AdministratorId { get; set; }
|
||||
public string ServerHostname { get; set; }
|
||||
public bool EnableEpisodeSearching { get; set; }
|
||||
public List<JellyfinSelectedLibraries> JellyfinSelectedLibraries { get; set; } = new List<JellyfinSelectedLibraries>();
|
||||
}
|
||||
|
||||
public class JellyfinSelectedLibraries
|
||||
{
|
||||
public string Key { get; set; }
|
||||
public string Title { get; set; } // Name is for display purposes
|
||||
public string CollectionType { get; set; }
|
||||
public bool Enabled { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue