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.
hydra/config/hydra.php

30 lines
920 B

<?php
return [
/*
|--------------------------------------------------------------------------
| Default user role
|--------------------------------------------------------------------------
|
| This value is the default user role id that will be assigned to new users
| when they register.
|
| 1 = Admin role, 2 = User role, 3 = Customer Role - Check RoleSeeder for more
*/
3 years ago
'default_user_role_id' => env('DEFAULT_ROLE_ID', 2),
/*
|--------------------------------------------------------------------------
| 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),
];