mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 06:24:24 +01:00
* Add reporting feature * Remove nodatime * Add summaries * work... * Add chart title * Fix error * Allow to set hour in the field * UI updates * Fix fake data * ViewDefinitions can be dynamic * Add items sold * Sticky table headers * Update JS and remove jQuery usages * JS click fix * Handle tag all invoices for app * fix dup row in items report * Can cancel invoice request * Add tests * Fake data for items sold * Rename Items to Products, improve navigation F5 * Use bordered table for summaries --------- Co-authored-by: Dennis Reimann <mail@dennisreimann.de>
31 lines
695 B
C#
31 lines
695 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Razor.TagHelpers;
|
|
using System.Xml.Linq;
|
|
using BTCPayServer.Configuration;
|
|
|
|
namespace BTCPayServer.TagHelpers;
|
|
|
|
|
|
[HtmlTargetElement(Attributes = "[cheat-mode]")]
|
|
public class CheatModeTagHelper
|
|
{
|
|
public CheatModeTagHelper(BTCPayServerOptions env)
|
|
{
|
|
Env = env;
|
|
}
|
|
|
|
public BTCPayServerOptions Env { get; }
|
|
public bool CheatMode { get; set; }
|
|
public void Process(TagHelperContext context, TagHelperOutput output)
|
|
{
|
|
if (Env.CheatMode != CheatMode)
|
|
{
|
|
output.SuppressOutput();
|
|
}
|
|
}
|
|
}
|