feat: Added the ability to provide your own custom plex url

This commit is contained in:
tidusjar 2021-09-06 20:34:06 +01:00
parent d24c390fe4
commit 6c6b7bb498
7 changed files with 95 additions and 3 deletions

View file

@ -21,6 +21,7 @@ namespace Ombi.Core.Settings.Models.External
public string MachineIdentifier { get; set; }
public int EpisodeBatchSize { get; set; }
public string ServerHostname { get; set; } = "https://app.plex.tv";
public List<PlexSelectedLibraries> PlexSelectedLibraries { get; set; } = new List<PlexSelectedLibraries>();
}