OAuth: add displayName attribute to profile for Nextcloud compatibility
parent
3929b07380
commit
1db4d3d747
|
@ -17,6 +17,7 @@ if (!empty($mailbox)) {
|
||||||
'identifier' => $token['user_id'],
|
'identifier' => $token['user_id'],
|
||||||
'email' => (!empty($mailbox['username']) ? $mailbox['username'] : ''),
|
'email' => (!empty($mailbox['username']) ? $mailbox['username'] : ''),
|
||||||
'full_name' => (!empty($mailbox['name']) ? $mailbox['name'] : 'mailcow administrative user'),
|
'full_name' => (!empty($mailbox['name']) ? $mailbox['name'] : 'mailcow administrative user'),
|
||||||
|
'displayName' => (!empty($mailbox['name']) ? $mailbox['name'] : 'mailcow administrative user'),
|
||||||
'created' => (!empty($mailbox['created']) ? $mailbox['created'] : ''),
|
'created' => (!empty($mailbox['created']) ? $mailbox['created'] : ''),
|
||||||
'modified' => (!empty($mailbox['modified']) ? $mailbox['modified'] : ''),
|
'modified' => (!empty($mailbox['modified']) ? $mailbox['modified'] : ''),
|
||||||
'active' => (!empty($mailbox['active']) ? $mailbox['active'] : ''),
|
'active' => (!empty($mailbox['active']) ? $mailbox['active'] : ''),
|
||||||
|
|
Loading…
Reference in New Issue