mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 06:24:24 +01:00
Rewording: Integrations become (store) plugins
We're keeping the `store-integrations-list` extension point name for backwards compatibility, otherwise I renamed all "integration" occurences in the views and also the routes. Note: We still refer to external software like WooCommerce, Drupal, Magento and such as "integrations", I think that distinction makes sense. Closes #3594.
This commit is contained in:
committed by
Andrew Camilleri
parent
f1029fceff
commit
2ae4501de6
@@ -15,10 +15,10 @@ namespace BTCPayServer.Controllers
|
||||
{
|
||||
public partial class UIStoresController
|
||||
{
|
||||
[HttpGet("{storeId}/integrations")]
|
||||
public IActionResult Integrations()
|
||||
[HttpGet("{storeId}/plugins")]
|
||||
public IActionResult Plugins()
|
||||
{
|
||||
return View("Integrations", new IntegrationsViewModel());
|
||||
return View("Plugins", new PluginsViewModel());
|
||||
}
|
||||
|
||||
private async Task<Data.WebhookDeliveryData?> LastDeliveryForWebhook(string webhookId)
|
||||
|
||||
Reference in New Issue
Block a user