mirror of
https://github.com/aljazceru/BTCPayServerPlugins.git
synced 2025-12-18 16:14:25 +01:00
20 lines
647 B
Plaintext
20 lines
647 B
Plaintext
@using BTCPayServer.Abstractions.TagHelpers
|
|
@using BTCPayServer.Abstractions.Extensions
|
|
@using BTCPayServer.Components.UIExtensionPoint
|
|
@using BTCPayServer.Plugins.Prism.Components
|
|
@using BTCPayServer.Abstractions.Contracts
|
|
@inject IScopeProvider ScopeProvider
|
|
@{
|
|
ViewData.SetActivePage("Prism", "Prism", "Prism");
|
|
}
|
|
|
|
@section PageHeadContent {
|
|
<base href="~/"/>
|
|
}
|
|
@(await Html.RenderComponentAsync<PrismEdit>(RenderMode.ServerPrerendered, new
|
|
{
|
|
StoreId = ScopeProvider.GetCurrentStoreId(),
|
|
}))
|
|
|
|
<script src="_framework/blazor.server.js"></script>
|
|
<vc:ui-extension-point location="prism-edit" model="@Model"></vc:ui-extension-point> |