btcpayserver/BTCPayServer/Views/UIServer/EditFileSystemStorageProvider.cshtml
d11n c56821300a
Server Settings: Consolidate Storage and Files (#3863)
* Server Settings: Consolidate Storage and Files

* Improve storage options name display

* Remove file services from services page

* Remove more code
2022-06-15 21:06:16 +09:00

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" />
}