mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 02:26:55 -07:00
feat(request-limits): ✨ Added the new request limit options into the user importer
This commit is contained in:
parent
03bc23a74e
commit
01d4f4d718
6 changed files with 59 additions and 9 deletions
|
@ -1,4 +1,5 @@
|
|||
using System.Collections.Generic;
|
||||
using Ombi.Store.Entities;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Ombi.Settings.Settings.Models
|
||||
{
|
||||
|
@ -9,7 +10,11 @@ namespace Ombi.Settings.Settings.Models
|
|||
public bool ImportEmbyUsers { get; set; }
|
||||
public bool ImportJellyfinUsers { get; set; }
|
||||
public int MovieRequestLimit { get; set; }
|
||||
public RequestLimitType MovieRequestLimitType { get; set; } = RequestLimitType.Week;
|
||||
public int EpisodeRequestLimit { get; set; }
|
||||
public RequestLimitType EpisodeRequestLimitType { get; set; } = RequestLimitType.Week;
|
||||
public int MusicRequestLimit { get; set; }
|
||||
public RequestLimitType MusicRequestLimitType { get; set; } = RequestLimitType.Week;
|
||||
public string DefaultStreamingCountry { get; set; } = "US";
|
||||
public List<string> DefaultRoles { get; set; } = new List<string>();
|
||||
public List<string> BannedPlexUserIds { get; set; } = new List<string>();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue