Commit cb01abeff1b22c078831328ccb0785f7eec9d1f7

Authored by oji
1 parent 068a658418
Exists in master

bug fixes

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

app/SsoClientLibrary.php
... ... @@ -29,7 +29,7 @@
29 29  
30 30 public function __construct() {
31 31 $this->clientId = config('master.sso.client_id'); // 3rd Party client Id
32   - $this->clientSecret = config('master.sso.client_secreat'); // 3rd Party client secret
  32 + $this->clientSecret = config('master.sso.client_secret'); // 3rd Party client secret
33 33 $this->redirectUri = config('master.sso.redirect_uri'); // 3rd Party url redirect or url to handle callback
34 34 $this->targetUri = config('master.sso.target_uri'); // SSO Riau portal
35 35 }