This commit is contained in:
Maxime Renou
2020-05-12 13:00:14 +02:00
parent 133aaff3e7
commit fedd615ed5
4 changed files with 45 additions and 9 deletions

View File

@@ -10,12 +10,12 @@ return [
/**
* Route that redirects to Bluesquare Connect
*/
'login_url' => '/oauth/authorize',
'login_url' => '/connect/authorize',
/**
* OAuth callback URL
*/
'redirect_url' => env('BCONNECT_REDIRECT', 'http://localhost:8000/oauth/callback'),
'redirect_url' => env('BCONNECT_REDIRECT', 'http://localhost:8000/connect/callback'),
/**
* OAuth client id
@@ -30,8 +30,8 @@ return [
/**
* OAuth scopes (separated with commas)
*/
'user_scopes' => '*',
'client_scopes' => '*',
'user_scopes' => env('BCONNECT_USER_SCOPES', '*'),
'client_scopes' => env('BCONNECT_CLIENT_SCOPES', '*'),
/**
* Bluesquare Connect URL