mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-23 10:36:43 +00:00
make channel access opt-in rather than opt out
This commit is contained in:
@@ -9,12 +9,12 @@ namespace MediaBrowser.Model.Connect
|
||||
public string Id { get; set; }
|
||||
public string[] ExcludedLibraries { get; set; }
|
||||
public bool EnableLiveTv { get; set; }
|
||||
public string[] ExcludedChannels { get; set; }
|
||||
public string[] EnabledChannels { get; set; }
|
||||
|
||||
public ConnectAuthorization()
|
||||
{
|
||||
ExcludedLibraries = new string[] { };
|
||||
ExcludedChannels = new string[] { };
|
||||
EnabledChannels = new string[] { };
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,12 +7,12 @@ namespace MediaBrowser.Model.Connect
|
||||
public string ConnectUserName { get; set; }
|
||||
public string[] ExcludedLibraries { get; set; }
|
||||
public bool EnableLiveTv { get; set; }
|
||||
public string[] ExcludedChannels { get; set; }
|
||||
public string[] EnabledChannels { get; set; }
|
||||
|
||||
public ConnectAuthorizationRequest()
|
||||
{
|
||||
ExcludedLibraries = new string[] { };
|
||||
ExcludedChannels = new string[] { };
|
||||
EnabledChannels = new string[] { };
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user