mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
c56821300a
* Server Settings: Consolidate Storage and Files * Improve storage options name display * Remove file services from services page * Remove more code
18 lines
615 B
Plaintext
18 lines
615 B
Plaintext
@model BTCPayServer.Storage.Services.Providers.FileSystemStorage.Configuration.FileSystemStorageConfiguration
|
|
@{
|
|
ViewData.SetActivePage(ServerNavPages.Files, $"Local Filesystem Storage");
|
|
}
|
|
|
|
<h3 class="mb-4">@ViewData["Title"]</h3>
|
|
|
|
<p>Any uploaded files are being saved on the same machine that hosts BTCPay; please pay attention to your storage space.</p>
|
|
<div class="row">
|
|
<div class="col-xl-10 col-xxl-constrain">
|
|
<a asp-action="Storage" asp-route-forceChoice="true">Change Storage provider</a>
|
|
</div>
|
|
</div>
|
|
|
|
@section PageFootContent {
|
|
<partial name="_ValidationScriptsPartial" />
|
|
}
|