This commit is contained in:
= 2021-05-07 18:03:37 +10:00
parent bdda63a214
commit 31db5b44c1

View File

@ -80,7 +80,7 @@ class WepaySignup extends Component
public function submit() public function submit()
{ {
//need to create or get a new WePay CompanyGateway //need to create or get a new WePay CompanyGateway
$cg = CompanyGateway::where('id', 49) $cg = CompanyGateway::where('gateway_key', '8fdeed552015b3c7b44ed6c8ebd9e992')
->where('company_id', $this->company->id) ->where('company_id', $this->company->id)
->firstOrNew(); ->firstOrNew();
@ -97,9 +97,6 @@ class WepaySignup extends Component
$data = $this->validate($this->rules); $data = $this->validate($this->rules);
// nlog($data);
$this->saved = ctrans('texts.processing'); $this->saved = ctrans('texts.processing');
$wepay_driver = new WePayPaymentDriver($cg, null, null); $wepay_driver = new WePayPaymentDriver($cg, null, null);
@ -156,5 +153,19 @@ class WepaySignup extends Component
} }
} }
$config = [
'userId' => $wepay_user->user_id,
'accessToken' => $access_token,
'tokenType' => $wepay_user->token_type,
'tokenExpires' => $access_token_expires,
'accountId' => $wepay_account->account_id,
'state' => $wepay_account->state,
'testMode' => config('ninja.wepay.environment') == 'staging',
'country' => $data['country'],
];
$cg->setConfig($config);
$cg->save();
} }
} }