mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 02:28:31 +01:00
2e6246e385
* Move TagHelpers to Abstractions Makes them available for use in plugins. Also cleans up the tag helper references in the view code: As we have it in the root view imports, the individual directives in the views are superfluous. * Move CurrenciesSuggestionsTagHelper back To get rid of the Rating dependency in Abstractions.
17 lines
577 B
Plaintext
17 lines
577 B
Plaintext
@using Microsoft.AspNetCore.Identity
|
|
@using BTCPayServer
|
|
@using BTCPayServer.Abstractions.Services
|
|
@using BTCPayServer.Views
|
|
@using BTCPayServer.Models
|
|
@using BTCPayServer.Models.AccountViewModels
|
|
@using BTCPayServer.Models.InvoicingModels
|
|
@using BTCPayServer.Models.ManageViewModels
|
|
@using BTCPayServer.Models.StoreViewModels
|
|
@using BTCPayServer.Data
|
|
@using Microsoft.AspNetCore.Routing;
|
|
@inject Safe Safe
|
|
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
|
|
@addTagHelper *, BTCPayServer
|
|
@addTagHelper *, BTCPayServer.Abstractions
|
|
@addTagHelper *, BundlerMinifier.TagHelpers
|