@using static BTCPayServer.Data.StoreBlob @model IntegrationsViewModel @{ Layout = "../Shared/_NavLayout.cshtml"; ViewData.SetActivePageAndTitle(StoreNavPages.Integrations, "Integrations"); } @if (!ViewContext.ModelState.IsValid) {
}

Shopify

@if (Model.Shopify?.CredentialsValid == false) { } else { } @if (Model.Shopify?.CredentialsValid == true) { var shopify = Model.Shopify;

Shopify Operations

if (!shopify.IntegratedAt.HasValue) { } else {

Orders on @shopify.ShopName.myshopify.com will be marked as paid on successful invoice payment. Started: @shopify.IntegratedAt.Value.ToBrowserDate()

} }
@section Scripts { @await Html.PartialAsync("_ValidationScriptsPartial") }