mirror of
https://github.com/wekan/wekan.git
synced 2025-12-27 20:58:48 +01:00
authentification oauth2
This commit is contained in:
parent
c115046a7c
commit
1c8a00943c
3 changed files with 31 additions and 0 deletions
|
|
@ -459,6 +459,17 @@ if (Meteor.isServer) {
|
|||
return user;
|
||||
}
|
||||
|
||||
if (user.services.oidc) {
|
||||
user.username = user.services.oidc.username;
|
||||
user.emails = [{
|
||||
address: user.services.oidc.email.toLowerCase(),
|
||||
verified: false,
|
||||
}];
|
||||
const initials = user.services.oidc.fullname.match(/\b[a-zA-Z]/g).join('').toUpperCase();
|
||||
user.profile = { initials: initials, fullname: user.services.oidc.fullname };
|
||||
}
|
||||
|
||||
|
||||
if (options.from === 'admin') {
|
||||
user.createdThroughApi = true;
|
||||
return user;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue