mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
ad8f347989
Moves the `ViewsRazor` extension into Abstractions, so that it can be used by plugins. Separated out of #2701, prerequisite for the LNbank plugin integration.
9 lines
250 B
Plaintext
9 lines
250 B
Plaintext
@using BTCPayServer.Abstractions.Extensions
|
|
@using BTCPayServer.Views
|
|
@using BTCPayServer.Views.Manage
|
|
@{
|
|
Layout = "../Shared/_NavLayout.cshtml";
|
|
ViewBag.CategoryTitle = "Account";
|
|
ViewData.SetActiveCategory(typeof(ManageNavPages));
|
|
}
|