mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
23 lines
722 B
C#
23 lines
722 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using BTCPayServer.Abstractions.Contracts;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace BTCPayServer.Components.UIExtensionPoint
|
|
{
|
|
public class UiExtensionPoint : ViewComponent
|
|
{
|
|
private readonly IEnumerable<IUIExtension> _uiExtensions;
|
|
|
|
public UiExtensionPoint(IEnumerable<IUIExtension> uiExtensions)
|
|
{
|
|
_uiExtensions = uiExtensions;
|
|
}
|
|
|
|
public IViewComponentResult Invoke(string location)
|
|
{
|
|
return View(_uiExtensions.Where(extension => extension.Location.Equals(location, StringComparison.InvariantCultureIgnoreCase)).Select(extension => extension.Partial));
|
|
}
|
|
}
|
|
}
|