mirror of https://github.com/hasinhayder/hydra
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
842 B
29 lines
842 B
3 years ago
|
<?php
|
||
|
|
||
|
return [
|
||
|
|
||
|
/*
|
||
|
|--------------------------------------------------------------------------
|
||
|
| Default user role
|
||
|
|--------------------------------------------------------------------------
|
||
|
|
|
||
|
| This value is the default user role id that will be assigned to new users
|
||
|
| when they register.
|
||
|
|
|
||
|
*/
|
||
|
|
||
|
'default_user_role_id' => env('DEFAULT_USER_ROLE_ID', 1),
|
||
|
|
||
|
/*
|
||
|
|--------------------------------------------------------------------------
|
||
|
| Delete old access tokens when logged in
|
||
|
|--------------------------------------------------------------------------
|
||
|
|
|
||
|
| This value determines whether or not to delete old access tokens when
|
||
|
| the users are logged in.
|
||
|
|
|
||
|
*/
|
||
|
|
||
|
'delete_previous_access_tokens_on_login' => env('DELETE_PREVIOUS_ACCESS_TOKENS_ON_LOGIN', false),
|
||
|
];
|