mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-01-29 10:54:36 +01:00
* BTCPay Server Extensions  * cleanup * fix * Polish UI a bit,detect when docker deployment
20 lines
502 B
C#
20 lines
502 B
C#
#if DEBUG
|
|
using BTCPayServer.Contracts;
|
|
|
|
namespace BTCPayServer.Services.Notifications.Blobs
|
|
{
|
|
internal class JunkNotification
|
|
{
|
|
internal class Handler : NotificationHandler<JunkNotification>
|
|
{
|
|
public override string NotificationType => "junk";
|
|
|
|
protected override void FillViewModel(JunkNotification notification, NotificationViewModel vm)
|
|
{
|
|
vm.Body = $"All your junk r belong to us!";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
#endif
|