mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 22:46:49 +01:00
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.
12 lines
441 B
Text
12 lines
441 B
Text
@using BTCPayServer.Views.Stores
|
|
@using BTCPayServer.Abstractions.Extensions
|
|
@{
|
|
var store = Context.GetStoreData();
|
|
}
|
|
|
|
<li class="nav-item">
|
|
<a asp-area="" asp-controller="UIShopify" asp-action="EditShopify" asp-route-storeId="@store.Id" class="nav-link js-scroll-trigger @ViewData.IsActivePage("shopify", nameof(StoreNavPages))" id="StoreNav-Shopify">
|
|
<vc:icon symbol="shopify"/>
|
|
<span>Shopify</span>
|
|
</a>
|
|
</li>
|