mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 06:23:03 +03:00
15 lines
436 B
C#
15 lines
436 B
C#
|
|
using System.Collections.Generic;
|
||
|
|
using Emby.Server.Implementations.IO;
|
||
|
|
|
||
|
|
namespace Emby.Server.Implementations
|
||
|
|
{
|
||
|
|
public static class ConfigurationOptions
|
||
|
|
{
|
||
|
|
public static readonly Dictionary<string, string> Configuration = new Dictionary<string, string>
|
||
|
|
{
|
||
|
|
{"ManagedFileSystem:DefaultDirectory", null},
|
||
|
|
{"ManagedFileSystem:EnableSeparateFileAndDirectoryQueries", "True"}
|
||
|
|
};
|
||
|
|
}
|
||
|
|
}
|