mirror of
https://github.com/bitwarden/server
synced 2025-12-22 11:13:27 +00:00
fix bitpay initalization
This commit is contained in:
@@ -13,7 +13,8 @@ namespace Bit.Api.Controllers
|
||||
private readonly BitPayClient _bitPayClient;
|
||||
private readonly GlobalSettings _globalSettings;
|
||||
|
||||
public MiscController(BitPayClient bitPayClient,
|
||||
public MiscController(
|
||||
BitPayClient bitPayClient,
|
||||
GlobalSettings globalSettings)
|
||||
{
|
||||
_bitPayClient = bitPayClient;
|
||||
|
||||
@@ -58,13 +58,14 @@ namespace Bit.Api
|
||||
// Caching
|
||||
services.AddMemoryCache();
|
||||
|
||||
// BitPay
|
||||
services.AddSingleton<BitPayClient>();
|
||||
|
||||
if(!globalSettings.SelfHosted)
|
||||
{
|
||||
// Rate limiting
|
||||
services.AddSingleton<IIpPolicyStore, MemoryCacheIpPolicyStore>();
|
||||
services.AddSingleton<IRateLimitCounterStore, MemoryCacheRateLimitCounterStore>();
|
||||
// BitPay
|
||||
services.AddSingleton<BitPayClient>();
|
||||
}
|
||||
|
||||
// Identity
|
||||
|
||||
Reference in New Issue
Block a user