chenged ldap_uid to preferred_username

This commit is contained in:
Kevin Veen-Birkenbach 2025-02-26 18:11:29 +01:00
parent a9de544a8d
commit 2b3cdd58d6
2 changed files with 6 additions and 1 deletions

View File

@ -94,6 +94,11 @@ docker-compose exec -it -u www-data application /var/www/html/occ
```
### User Administration
#### List Users
```bash
docker compose exec -it -u www-data application php occ user:list
```
#### Create user via CLI
```bash
docker compose exec -it -u www-data application php occ user:add {{username}}

View File

@ -98,7 +98,7 @@ return array (
'mail' => 'email',
# 'quota' => 'nextcloudQuota', # Not implemented yet
# 'home' => 'homeDirectory', # Not implemented yet
'ldap_uid' => '{{ldap.attributes.user_id}}',
'ldap_uid' => 'preferred_username',
# 'groups' => 'ownCloudGroups', # Not implemented yet
# 'login_filter' => 'realm_access_roles',
// 'photoURL' => 'picture',