Open the Swagger API page on server start if not hosting the static web content

This commit is contained in:
Mark Monteiro
2020-02-25 17:01:57 +01:00
parent 26af5ea45a
commit 1b5999a1bc
4 changed files with 23 additions and 1 deletions

View File

@@ -29,6 +29,16 @@ namespace Emby.Server.Implementations.Browser
OpenDashboardPage("index.html", appHost);
}
/// <summary>
/// Opens the swagger API page.
/// </summary>
/// <param name="appHost">The app host.</param>
public static void OpenSwaggerPage(IServerApplicationHost appHost)
{
var url = appHost.GetLocalApiUrl("localhost") + "/swagger/index.html";
OpenUrl(appHost, url);
}
/// <summary>
/// Opens the URL.
/// </summary>