mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
cf436e11ae
* Part 1: OpenIddict - Minor Changes & Config prep * add missing nuget * pr changes * pr fixes * remove config for openid -- no need for it for now * remove unused extension * Add tests * use pay tester http client * check redirecturl in tests
39 lines
1.1 KiB
Plaintext
39 lines
1.1 KiB
Plaintext
@model ErrorViewModel
|
|
@{
|
|
ViewData["Title"] = "Error";
|
|
}
|
|
|
|
<h1 class="text-danger">
|
|
@if (!string.IsNullOrEmpty(Model.Error)) {
|
|
<strong>@Model.Error</strong>
|
|
}
|
|
else
|
|
{
|
|
@:Error.
|
|
}
|
|
</h1>
|
|
<h2 class="text-danger">
|
|
@if (!string.IsNullOrEmpty(Model.ErrorDescription)) {
|
|
<small>@Model.ErrorDescription</small>
|
|
}
|
|
else
|
|
{
|
|
@:An error occurred while processing your request.
|
|
}
|
|
</h2>
|
|
|
|
@if(Model != null && Model.ShowRequestId)
|
|
{
|
|
<p>
|
|
<strong>Request ID:</strong> <code>@Model.RequestId</code>
|
|
</p>
|
|
}
|
|
|
|
<h3>Development Mode</h3>
|
|
<p>
|
|
Swapping to <strong>Development</strong> environment will display more detailed information about the error that occurred.
|
|
</p>
|
|
<p>
|
|
<strong>Development environment should not be enabled in deployed applications</strong>, as it can result in sensitive information from exceptions being displayed to end users. For local debugging, development environment can be enabled by setting the <strong>ASPNETCORE_ENVIRONMENT</strong> environment variable to <strong>Development</strong>, and restarting the application.
|
|
</p>
|