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