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.
17 lines
508 B
17 lines
508 B
<?php |
|
|
|
return [ |
|
'token_prefix' => 'dbl_', |
|
'ldap_jwt_ttl' => (int) env('API_LDAP_JWT_TTL', 3600), |
|
'scopes' => [ |
|
'databases:read' => 'List SQL Server databases', |
|
'databases:write' => 'Take databases offline', |
|
'ldap:read' => 'Read LDAP users and groups', |
|
'ldap:write' => 'Modify LDAP users and groups', |
|
'admin' => 'Full API access', |
|
], |
|
'scope_groups' => [ |
|
'read_only' => ['databases:read', 'ldap:read'], |
|
'full' => ['admin'], |
|
], |
|
];
|
|
|