From d6b5e3981cd517f149f3de9d3d754bb50fba10b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Domeradzki?= Date: Wed, 15 May 2024 15:59:09 +0200 Subject: [PATCH] Misc swagger UI enhancements --- ArchiSteamFarm/IPC/ArchiKestrel.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ArchiSteamFarm/IPC/ArchiKestrel.cs b/ArchiSteamFarm/IPC/ArchiKestrel.cs index c55cbdfdc..4c95a1907 100644 --- a/ArchiSteamFarm/IPC/ArchiKestrel.cs +++ b/ArchiSteamFarm/IPC/ArchiKestrel.cs @@ -263,6 +263,8 @@ internal static class ArchiKestrel { static options => { options.DisplayRequestDuration(); options.EnableDeepLinking(); + options.EnableTryItOutByDefault(); + options.ShowCommonExtensions(); options.ShowExtensions(); options.SwaggerEndpoint($"{SharedInfo.ASF}/swagger.json", $"{SharedInfo.ASF} API"); }