diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-11-11 00:43:57 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-11-11 00:43:57 -0500 |
| commit | 68b3ca63837e572756e6670547ea2e27d995cbe3 (patch) | |
| tree | bc9629a21e7ed9779b5cf04474732962bb9e789b /MediaBrowser.Server.Startup.Common/EntryPoints | |
| parent | b3f22fd05237e589d79e3f06de7e5db27effcc93 (diff) | |
update core project
Diffstat (limited to 'MediaBrowser.Server.Startup.Common/EntryPoints')
| -rw-r--r-- | MediaBrowser.Server.Startup.Common/EntryPoints/StartupWizard.cs | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/MediaBrowser.Server.Startup.Common/EntryPoints/StartupWizard.cs b/MediaBrowser.Server.Startup.Common/EntryPoints/StartupWizard.cs deleted file mode 100644 index f9d173c59..000000000 --- a/MediaBrowser.Server.Startup.Common/EntryPoints/StartupWizard.cs +++ /dev/null @@ -1,59 +0,0 @@ -using MediaBrowser.Controller; -using MediaBrowser.Controller.Plugins; -using MediaBrowser.Model.Logging; -using MediaBrowser.Server.Startup.Common.Browser; - -namespace MediaBrowser.Server.Startup.Common.EntryPoints -{ - /// <summary> - /// Class StartupWizard - /// </summary> - public class StartupWizard : IServerEntryPoint - { - /// <summary> - /// The _app host - /// </summary> - private readonly IServerApplicationHost _appHost; - /// <summary> - /// The _user manager - /// </summary> - private readonly ILogger _logger; - - /// <summary> - /// Initializes a new instance of the <see cref="StartupWizard" /> class. - /// </summary> - /// <param name="appHost">The app host.</param> - /// <param name="logger">The logger.</param> - public StartupWizard(IServerApplicationHost appHost, ILogger logger) - { - _appHost = appHost; - _logger = logger; - } - - /// <summary> - /// Runs this instance. - /// </summary> - public void Run() - { - if (_appHost.IsFirstRun) - { - LaunchStartupWizard(); - } - } - - /// <summary> - /// Launches the startup wizard. - /// </summary> - private void LaunchStartupWizard() - { - BrowserLauncher.OpenDashboardPage("wizardstart.html", _appHost); - } - - /// <summary> - /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. - /// </summary> - public void Dispose() - { - } - } -}
\ No newline at end of file |
