1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 21:22:58 +01:00

Update secret keys & sandbox

This commit is contained in:
Benjamin Beganović 2020-06-15 13:02:44 +02:00
parent 8d5a843b36
commit 17831087fe

View File

@ -57,9 +57,13 @@ class CheckoutComPaymentDriver extends BasePaymentDriver
public function init()
{
$secret_key = $this->company_gateway->getConfig()->secretApiKey;
$this->gateway = new CheckoutApi($secret_key); // @todo: 2nd (sandbox), 3rd (public)
$config = [
'secret' => $this->company_gateway->getConfigField('secretApiKey'),
'public' => $this->company_gateway->getConfigField('publicApiKey'),
'sandbox' => $this->company_gateway->getConfigField('testMode'),
];
$this->gateway = new CheckoutApi($config['secret'], $config['sandbox'], $config['public']);
}
public function viewForType($gateway_type_id)