mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 14:50:50 +01:00
21 lines
764 B
C#
21 lines
764 B
C#
|
using BTCPayServer.Abstractions.Contracts;
|
||
|
using BTCPayServer.Abstractions.Models;
|
||
|
using BTCPayServer.Abstractions.Services;
|
||
|
using Microsoft.Extensions.DependencyInjection;
|
||
|
|
||
|
namespace BTCPayServer.Plugins.PayButton
|
||
|
{
|
||
|
public class PayButtonPlugin : BaseBTCPayServerPlugin
|
||
|
{
|
||
|
public override string Identifier => "BTCPayServer.Plugins.PayButton";
|
||
|
public override string Name => "Pay Button";
|
||
|
public override string Description => "Easily-embeddable HTML button for accepting tips and donations .";
|
||
|
|
||
|
public override void Execute(IServiceCollection services)
|
||
|
{
|
||
|
services.AddSingleton<IUIExtension>(new UIExtension("PayButton/NavExtension", "header-nav"));
|
||
|
base.Execute(services);
|
||
|
}
|
||
|
}
|
||
|
}
|