You've already forked laravel-connect
Routes
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user