mirror of https://github.com/status-im/codimd.git
Retrieve GitLab avatar.
This commit is contained in:
parent
a3876dfc92
commit
b96cc4eb94
|
@ -63,6 +63,9 @@ module.exports = function (sequelize, DataTypes) {
|
|||
case "github":
|
||||
photo = 'https://avatars.githubusercontent.com/u/' + profile.id + '?s=48';
|
||||
break;
|
||||
case "gitlab":
|
||||
photo = profile.avatarUrl;
|
||||
break;
|
||||
case "dropbox":
|
||||
//no image api provided, use gravatar
|
||||
photo = 'https://www.gravatar.com/avatar/' + md5(profile.emails[0].value);
|
||||
|
|
Loading…
Reference in New Issue