From cb01abeff1b22c078831328ccb0785f7eec9d1f7 Mon Sep 17 00:00:00 2001 From: oji Date: Mon, 8 Aug 2022 07:16:15 +0700 Subject: [PATCH] bug fixes --- app/SsoClientLibrary.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/SsoClientLibrary.php b/app/SsoClientLibrary.php index 0929e93..0b64240 100644 --- a/app/SsoClientLibrary.php +++ b/app/SsoClientLibrary.php @@ -29,7 +29,7 @@ class SsoClientLibrary { public function __construct() { $this->clientId = config('master.sso.client_id'); // 3rd Party client Id - $this->clientSecret = config('master.sso.client_secreat'); // 3rd Party client secret + $this->clientSecret = config('master.sso.client_secret'); // 3rd Party client secret $this->redirectUri = config('master.sso.redirect_uri'); // 3rd Party url redirect or url to handle callback $this->targetUri = config('master.sso.target_uri'); // SSO Riau portal } -- 2.7.4