mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-28 19:34:23 +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.
9 lines
258 B
Plaintext
9 lines
258 B
Plaintext
@using BTCPayServer.Abstractions.Extensions
|
|
@using BTCPayServer.Views
|
|
@using BTCPayServer.Views.Server
|
|
@{
|
|
Layout = "../Shared/_NavLayout.cshtml";
|
|
ViewBag.CategoryTitle = "Server settings";
|
|
ViewData.SetActiveCategory(typeof(ServerNavPages));
|
|
}
|