mirror of
https://github.com/aljazceru/BTCPayServerPlugins.git
synced 2025-12-17 07:34:24 +01:00
59 lines
2.1 KiB
Plaintext
59 lines
2.1 KiB
Plaintext
|
|
@using BTCPayServer.Abstractions.Contracts
|
|
@using BTCPayServer.Plugins.FujiOracle
|
|
@inject IScopeProvider ScopeProvider
|
|
@inject FujiOracleService FujiOracleService
|
|
@{
|
|
var storeId = ScopeProvider.GetCurrentStoreId();
|
|
|
|
FujiOracleSettings settings = null;
|
|
if (!string.IsNullOrEmpty(storeId))
|
|
{
|
|
try
|
|
{
|
|
settings = await FujiOracleService.GetFujiOracleForStore(storeId);
|
|
}
|
|
catch (Exception)
|
|
{
|
|
}
|
|
}
|
|
}
|
|
@if (!string.IsNullOrEmpty(storeId))
|
|
{
|
|
<li class="list-group-item bg-tile ">
|
|
<div class="d-flex align-items-center">
|
|
<span class="d-flex flex-wrap flex-fill flex-column flex-sm-row">
|
|
<strong class="me-3">
|
|
Ticket Tailor
|
|
</strong>
|
|
<span title="" class="d-flex me-3">
|
|
<span class="text-secondary">Sell tickets on Ticket Tailor using BTCPay Server</span>
|
|
</span>
|
|
</span>
|
|
<span class="d-flex align-items-center fw-semibold">
|
|
@if (settings?.Enabled is true)
|
|
{
|
|
<span class="d-flex align-items-center text-success">
|
|
<span class="me-2 btcpay-status btcpay-status--enabled"></span>
|
|
Active
|
|
</span>
|
|
<span class="text-light ms-3 me-2">|</span>
|
|
<a lass="btn btn-link px-1 py-1 fw-semibold" asp-controller="FujiOracle" asp-action="UpdateFujiOracleSettings" asp-route-storeId="@storeId">
|
|
Modify
|
|
</a>
|
|
}
|
|
else
|
|
{
|
|
<span class="d-flex align-items-center text-danger">
|
|
<span class="me-2 btcpay-status btcpay-status--disabled"></span>
|
|
Disabled
|
|
</span>
|
|
<a class="btn btn-primary btn-sm ms-4 px-3 py-1 fw-semibold" asp-controller="FujiOracle" asp-action="UpdateFujiOracleSettings" asp-route-storeId="@storeId">
|
|
Setup
|
|
</a>
|
|
}
|
|
</span>
|
|
</div>
|
|
</li>
|
|
}
|