diff options
| author | PloughPuff <ploughpuff@protonmail.com> | 2019-01-28 21:45:00 +0000 |
|---|---|---|
| committer | Bond-009 <bond.009@outlook.com> | 2019-01-31 18:56:34 +0100 |
| commit | 211ae30188546e9c652b68b609ab6266ab42a49d (patch) | |
| tree | 12e2f5f6ec0e5ff57258fb3f9857e4799ee15c6f /Emby.Server.Implementations/IStartupOptions.cs | |
| parent | e18b89ca275feceee21b540878017a2373e7de6c (diff) | |
Revert back to NoAutoRunWebApp
Addressed further review comments. Removed unnecessary .ParsedStartupOptions namespace. Removed DataDir, ConfigDir and LogDir from Interface file as not necessary.
Diffstat (limited to 'Emby.Server.Implementations/IStartupOptions.cs')
| -rw-r--r-- | Emby.Server.Implementations/IStartupOptions.cs | 19 |
1 files changed, 2 insertions, 17 deletions
diff --git a/Emby.Server.Implementations/IStartupOptions.cs b/Emby.Server.Implementations/IStartupOptions.cs index 878bb6640..24aaa76c0 100644 --- a/Emby.Server.Implementations/IStartupOptions.cs +++ b/Emby.Server.Implementations/IStartupOptions.cs @@ -1,23 +1,8 @@ -namespace Emby.Server.Implementations.ParsedStartupOptions +namespace Emby.Server.Implementations { public interface IStartupOptions { /// <summary> - /// --datadir - /// </summary> - string DataDir { get; } - - /// <summary> - /// --configdir - /// </summary> - string ConfigDir { get; } - - /// <summary> - /// --logdir - /// </summary> - string LogDir { get; } - - /// <summary> /// --ffmpeg /// </summary> string FFmpegPath { get; } @@ -35,7 +20,7 @@ namespace Emby.Server.Implementations.ParsedStartupOptions /// <summary> /// --noautorunwebapp /// </summary> - bool AutoRunWebApp { get; } + bool NoAutoRunWebApp { get; } /// <summary> /// --package-name |
