Retrieve GitLab avatar.

This commit is contained in:
Jason Croft 2016-05-12 13:26:50 -04:00
parent e65d43bd81
commit 0adc0864d5

View file

@ -66,6 +66,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);