mirror of
https://github.com/aljazceru/BTCPayServerPlugins.git
synced 2025-12-16 23:24:25 +01:00
13 lines
438 B
Plaintext
13 lines
438 B
Plaintext
@using BTCPayServer.Plugins.FixedFloat
|
|
@using Newtonsoft.Json
|
|
@using Newtonsoft.Json.Linq
|
|
@inject FixedFloatService FixedFloatService
|
|
@{
|
|
var storeId = ((JObject)JObject.Parse(JsonConvert.SerializeObject(Model)))["StoreId"].Value<string>();
|
|
var settings = await FixedFloatService.GetFixedFloatForStore(storeId);
|
|
if (settings?.Enabled is true)
|
|
{
|
|
<script src="~/Resources/js/fixedFloatComponent.js"></script>
|
|
}
|
|
}
|