Start of work on templates - identify templates that apply to existing entries
This commit is contained in:
10
config/filesystems.php
Normal file
10
config/filesystems.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'disks' => [
|
||||
'templates' => [
|
||||
'driver' => 'local',
|
||||
'root' => base_path(env('LDAP_TEMPLATE_DIR','templates')),
|
||||
],
|
||||
],
|
||||
];
|
@@ -76,4 +76,8 @@ return [
|
||||
'attr' => [env('LDAP_LOGIN_ATTR','uid') => env('LDAP_LOGIN_ATTR_DESC','User ID')], // Attribute used to find user for login
|
||||
'objectclass' => explode(',',env('LDAP_LOGIN_OBJECTCLASS', 'posixAccount')), // Objectclass that users must contain to login
|
||||
],
|
||||
|
||||
'template' => [
|
||||
'dir' => env('LDAP_TEMPLATE_DRIVER','templates'),
|
||||
],
|
||||
];
|
Reference in New Issue
Block a user