diff options
author | Simon Rettberg | 2016-03-21 18:15:31 +0100 |
---|---|---|
committer | Simon Rettberg | 2016-03-21 18:15:31 +0100 |
commit | ea385dfb9f076a09e1c11eccc037d7cabccb7bcf (patch) | |
tree | b3e382505200a7cb44594b4ad074ae5e7778a2fe /inc | |
parent | [event.inc] Remove debug output (diff) | |
download | slx-admin-ea385dfb9f076a09e1c11eccc037d7cabccb7bcf.tar.gz slx-admin-ea385dfb9f076a09e1c11eccc037d7cabccb7bcf.tar.xz slx-admin-ea385dfb9f076a09e1c11eccc037d7cabccb7bcf.zip |
[adauth] Configurable home directory mount logic
Diffstat (limited to 'inc')
-rw-r--r-- | inc/configmodule/adauth.inc.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/inc/configmodule/adauth.inc.php b/inc/configmodule/adauth.inc.php index efc8afd7..9fe32f43 100644 --- a/inc/configmodule/adauth.inc.php +++ b/inc/configmodule/adauth.inc.php @@ -14,7 +14,8 @@ class ConfigModule_AdAuth extends ConfigModule const VERSION = 1; private static $REQUIRED_FIELDS = array('server', 'searchbase', 'binddn'); - private static $OPTIONAL_FIELDS = array('bindpw', 'home', 'ssl', 'fingerprint', 'certificate', 'homeattr'); + private static $OPTIONAL_FIELDS = array('bindpw', 'home', 'ssl', 'fingerprint', 'certificate', 'homeattr', + 'shareRemapMode', 'shareRemapCreate', 'shareDocuments', 'shareDownloads', 'shareDesktop', 'shareMedia', 'shareOther', 'shareHomeDrive'); protected function generateInternal($tgz, $parent) { |