fix: use first email address in Rocket.Chat auth response (#3122)
This commit is contained in:
parent
3814eef922
commit
ed3925b1c5
@ -23,7 +23,7 @@ module.exports = {
|
|||||||
cb(null, {
|
cb(null, {
|
||||||
id: usr._id,
|
id: usr._id,
|
||||||
displayName: _.isEmpty(usr.name) ? usr.username : usr.name,
|
displayName: _.isEmpty(usr.name) ? usr.username : usr.name,
|
||||||
email: usr.email,
|
email: usr.emails[0].address,
|
||||||
picture: usr.avatarUrl
|
picture: usr.avatarUrl
|
||||||
})
|
})
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
|
Loading…
Reference in New Issue
Block a user