diff options
| author | Joshua M. Boniface <joshua@boniface.me> | 2019-03-12 12:51:11 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-12 12:51:11 -0400 |
| commit | 6751560228d8d48970ab5ae51f0f73c505f8e137 (patch) | |
| tree | e3ecd8c17be990fc36b2f866734ed987c7ce5b32 /MediaBrowser.Common | |
| parent | 2012eb5e11f1c6a1d75ffbbfa99c5c08ef856c2b (diff) | |
| parent | 3c4043199accbfe7995dd6060c89fc837300884a (diff) | |
Merge pull request #1092 from joshuaboniface/configurable-webdir
Add configurable webdir option
Diffstat (limited to 'MediaBrowser.Common')
| -rw-r--r-- | MediaBrowser.Common/Configuration/IApplicationPaths.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Common/Configuration/IApplicationPaths.cs b/MediaBrowser.Common/Configuration/IApplicationPaths.cs index cb4e8bf5f0..fd11bf904f 100644 --- a/MediaBrowser.Common/Configuration/IApplicationPaths.cs +++ b/MediaBrowser.Common/Configuration/IApplicationPaths.cs @@ -12,6 +12,12 @@ namespace MediaBrowser.Common.Configuration string ProgramDataPath { get; } /// <summary> + /// Gets the path to the web UI resources folder + /// </summary> + /// <value>The web UI resources path.</value> + string WebPath { get; } + + /// <summary> /// Gets the path to the program system folder /// </summary> /// <value>The program data path.</value> |
