* Univention: make birthday of users available in addressbook (univentionPerson.univentionBirthday attribute)

This commit is contained in:
ralf 2023-02-03 11:26:17 +01:00
parent 4b342db97e
commit c2714a6813

View File

@ -23,9 +23,14 @@ class Univention extends Ldap
{ {
function __construct($ldap_config = null, $ds = null) function __construct($ldap_config = null, $ds = null)
{ {
$this->schema2egw['univentionmail'] = array( $this->schema2egw += [
'univentionmail' => [
'email' => Accounts\Univention::MAIL_ATTR, 'email' => Accounts\Univention::MAIL_ATTR,
); ],
'univentionperson' => [
'bday' => 'univentionbirthday',
],
];
parent::__construct($ldap_config, $ds); parent::__construct($ldap_config, $ds);
} }