You've already forked laravel-connect
First commit
This commit is contained in:
34
config/bconnect.php
Normal file
34
config/bconnect.php
Normal file
@@ -0,0 +1,34 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
/**
|
||||
* OAuth model
|
||||
*/
|
||||
'model' => \App\User::class,
|
||||
|
||||
/**
|
||||
* OAuth redirect URI
|
||||
*/
|
||||
'redirect' => env('BCONNECT_REDIRECT', url('/oauth/callback')),
|
||||
|
||||
/**
|
||||
* OAuth client id
|
||||
*/
|
||||
'client_id' => env('BCONNECT_CLIENT_ID', null),
|
||||
|
||||
/**
|
||||
* OAuth client secret
|
||||
*/
|
||||
'client_secret' => env('BCONNECT_CLIENT_SECRET', null),
|
||||
|
||||
/**
|
||||
* OAuth scopes (separated with commas)
|
||||
*/
|
||||
'user_scopes' => '*',
|
||||
'client_scopes' => '*',
|
||||
|
||||
/**
|
||||
* Bluesquare Connect URL
|
||||
*/
|
||||
'url' => env('BCONNECT_URL', null),
|
||||
];
|
||||
Reference in New Issue
Block a user