do not require docker for plugin restart

we now have a more graceful restart mechanism specifically for plugins and most installs can handle this mechanism
This commit is contained in:
Kukks
2023-02-24 13:52:46 +01:00
parent 4ae05272c3
commit ff58301729

View File

@@ -43,7 +43,7 @@ namespace BTCPayServer.Controllers
Available = availablePlugins,
Commands = pluginService.GetPendingCommands(),
Disabled = pluginService.GetDisabledPlugins(),
CanShowRestart = btcPayServerOptions.DockerDeployment,
CanShowRestart = true,
DownloadedPluginsByIdentifier = availablePluginsByIdentifier
};
return View(res);