Remove store integrations list page (#4816)

Co-authored-by: d11n <mail@dennisreimann.de>
This commit is contained in:
Andrew Camilleri
2023-03-27 16:40:50 +02:00
committed by GitHub
parent 45141d1391
commit d3f5576570
8 changed files with 1 additions and 135 deletions

View File

@@ -16,12 +16,6 @@ namespace BTCPayServer.Controllers
{
public partial class UIStoresController
{
[HttpGet("{storeId}/plugins")]
public IActionResult Plugins()
{
return View("Plugins", new PluginsViewModel());
}
private async Task<Data.WebhookDeliveryData?> LastDeliveryForWebhook(string webhookId)
{
return (await _Repo.GetWebhookDeliveries(CurrentStore.Id, webhookId, 1)).ToList().FirstOrDefault();