1
0
mirror of https://github.com/bitwarden/web synced 2026-01-04 09:33:32 +00:00

add credit via paypal

This commit is contained in:
Kyle Spearrin
2019-02-20 17:33:05 -05:00
parent 944187f276
commit 1f6632146b
8 changed files with 199 additions and 9 deletions

View File

@@ -0,0 +1,12 @@
export class WebConstants {
static readonly stripeTestKey = 'pk_test_KPoCfZXu7mznb9uSCPZ2JpTD';
static readonly stripeLiveKey = 'pk_live_bpN0P37nMxrMQkcaHXtAybJk';
static readonly btSandboxKey = 'sandbox_r72q8jq6_9pnxkwm75f87sdc2';
static readonly btProductionKey = 'production_qfbsv8kc_njj2zjtyngtjmbjd';
static readonly paypal = {
businessIdProduction: '4ZDA7DLUUJGMN',
businessIdSandbox: 'AD3LAUZSNVPJY',
buttonActionProduction: 'https://www.paypal.com/cgi-bin/webscr',
buttonActionSandbox: 'https://www.sandbox.paypal.com/cgi-bin/webscr',
};
}