mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-06-02 13:15:25 -04:00
Merge branch 'master' of github.com:jellyfin/jellyfin into ffmpeg
This commit is contained in:
commit
a8140cc74b
@ -0,0 +1,18 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
|
using MediaBrowser.Common.Configuration;
|
||||||
|
using MediaBrowser.Model.Providers;
|
||||||
|
|
||||||
|
namespace MediaBrowser.Common.Providers
|
||||||
|
{
|
||||||
|
public class SubtitleConfigurationFactory : IConfigurationFactory
|
||||||
|
{
|
||||||
|
public IEnumerable<ConfigurationStore> GetConfigurations()
|
||||||
|
{
|
||||||
|
yield return new ConfigurationStore()
|
||||||
|
{
|
||||||
|
Key = "subtitles",
|
||||||
|
ConfigurationType = typeof(SubtitleOptions)
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user