1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00

add transaction currency to details

This commit is contained in:
Kyle Spearrin 2019-02-23 10:21:06 -05:00
parent bc3e6f349c
commit b4f026a946
2 changed files with 2 additions and 2 deletions

View File

@ -111,7 +111,7 @@ namespace Bit.Billing.Controllers
Gateway = GatewayType.BitPay, Gateway = GatewayType.BitPay,
GatewayId = invoice.Id, GatewayId = invoice.Id,
PaymentMethodType = PaymentMethodType.BitPay, PaymentMethodType = PaymentMethodType.BitPay,
Details = $"BitPay {invoice.Id}" Details = $"{invoice.TransactionCurrency}, BitPay {invoice.Id}"
}; };
await _transactionRepository.CreateAsync(tx); await _transactionRepository.CreateAsync(tx);

View File

@ -25,7 +25,7 @@
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="2.1.1" /> <PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="2.1.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="2.1.1" /> <PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="2.1.1" />
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="2.1.3" /> <PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="2.1.3" />
<PackageReference Include="NBitpayClient" Version="1.0.0.31" /> <PackageReference Include="NBitpayClient" Version="1.0.0.32" />
<PackageReference Include="Npgsql" Version="4.0.4" /> <PackageReference Include="Npgsql" Version="4.0.4" />
<PackageReference Include="Quartz" Version="3.0.7" /> <PackageReference Include="Quartz" Version="3.0.7" />
<PackageReference Include="Serilog.Extensions.Logging" Version="2.0.2" /> <PackageReference Include="Serilog.Extensions.Logging" Version="2.0.2" />