mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-02-02 04:44:27 +01:00
17 lines
515 B
Plaintext
17 lines
515 B
Plaintext
@using BTCPayServer.Client
|
|
@using BTCPayServer.Views.Stores
|
|
@model BTCPayServer.Components.MainNav.MainNavViewModel
|
|
@{
|
|
var store = Context.GetStoreData();
|
|
}
|
|
|
|
@if (store != null)
|
|
{
|
|
<li class="nav-item" permission="@Policies.CanModifyStoreSettings">
|
|
<a layout-menu-item="Shopify" asp-area="" asp-controller="UIShopify" asp-action="EditShopify" asp-route-storeId="@store.Id">
|
|
<vc:icon symbol="logo-shopify" />
|
|
<span text-translate="true">Shopify</span>
|
|
</a>
|
|
</li>
|
|
}
|