mirror of
https://github.com/aljazceru/BTCPayServerPlugins.git
synced 2025-12-17 07:34:24 +01:00
27 lines
1.0 KiB
C#
27 lines
1.0 KiB
C#
using BTCPayServer.Abstractions.Contracts;
|
|
using BTCPayServer.Abstractions.Models;
|
|
using BTCPayServer.Abstractions.Services;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace BTCPayServer.Plugins.FileSeller;
|
|
|
|
public class FileSellerPlugin : BaseBTCPayServerPlugin
|
|
{
|
|
public override IBTCPayServerPlugin.PluginDependency[] Dependencies { get; } =
|
|
{
|
|
new() { Identifier = nameof(BTCPayServer), Condition = ">=1.11.5" }
|
|
};
|
|
public override void Execute(IServiceCollection applicationBuilder)
|
|
{
|
|
applicationBuilder.AddHostedService<FileSellerService>();
|
|
applicationBuilder.AddSingleton<IUIExtension>(new UIExtension("FileSeller/Detect",
|
|
"header-nav"));
|
|
applicationBuilder.AddSingleton<IUIExtension>(new UIExtension("FileSeller/Detect",
|
|
"checkout-end"));
|
|
applicationBuilder.AddSingleton<IUIExtension>(new UIExtension("FileSeller/FileSellerTemplateEditorItemDetail",
|
|
"app-template-editor-item-detail"));
|
|
|
|
|
|
base.Execute(applicationBuilder);
|
|
}
|
|
} |