diff options
| author | Anthony Lavado <anthony@lavado.ca> | 2020-05-26 12:20:42 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-26 12:20:42 -0400 |
| commit | 9c00226f11ee6d99e3e8f83a3a531e70d743e6ba (patch) | |
| tree | 6631a13825d74f6ea772d6b150146b75f1560761 /Emby.Server.Implementations/IStartupOptions.cs | |
| parent | 976ae36bea0768f0e363bf0c5091b0853cc81c4d (diff) | |
| parent | 09915363c2d5f2febed41e803476c7ec6049a06e (diff) | |
Merge pull request #3033 from neilsb/autodiscover-url-override
Allow override of address published by auto discovery
Diffstat (limited to 'Emby.Server.Implementations/IStartupOptions.cs')
| -rw-r--r-- | Emby.Server.Implementations/IStartupOptions.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/IStartupOptions.cs b/Emby.Server.Implementations/IStartupOptions.cs index 16b68170b..acae702f3 100644 --- a/Emby.Server.Implementations/IStartupOptions.cs +++ b/Emby.Server.Implementations/IStartupOptions.cs @@ -1,3 +1,5 @@ +using System; + namespace Emby.Server.Implementations { public interface IStartupOptions @@ -36,5 +38,10 @@ namespace Emby.Server.Implementations /// Gets the value of the --plugin-manifest-url command line option. /// </summary> string PluginManifestUrl { get; } + + /// <summary> + /// Gets the value of the --published-server-url command line option. + /// </summary> + Uri PublishedServerUrl { get; } } } |
