diff options
author | Maxime Quandalle <maxime@quandalle.com> | 2015-10-21 04:26:16 +0200 |
---|---|---|
committer | Maxime Quandalle <maxime@quandalle.com> | 2015-10-21 04:26:16 +0200 |
commit | 9154b06fc39f5cd046e1ed17a822e67a593b46c7 (patch) | |
tree | 4739a0338350339633cc12d9e3add47c2e2c6701 /client | |
parent | 7a5f030cc807c6a0a5addd8da59dc853dd4bd426 (diff) | |
download | wekan-9154b06fc39f5cd046e1ed17a822e67a593b46c7.tar.gz wekan-9154b06fc39f5cd046e1ed17a822e67a593b46c7.tar.bz2 wekan-9154b06fc39f5cd046e1ed17a822e67a593b46c7.zip |
Upgrade kenton:accounts-sandstorm package to 0.1.6
We now delegates more user attributes sync (avatar and permissions) to
this package instead of doing it ourselves.
Diffstat (limited to 'client')
-rw-r--r-- | client/components/users/userAvatar.jade | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/components/users/userAvatar.jade b/client/components/users/userAvatar.jade index e08666e5..44e899a7 100644 --- a/client/components/users/userAvatar.jade +++ b/client/components/users/userAvatar.jade @@ -1,7 +1,7 @@ template(name="userAvatar") a.member.js-member(title="{{userData.profile.fullname}} ({{userData.username}})") - if userData.profile.avatarUrl - img.avatar.avatar-image(src=userData.profile.avatarUrl) + if userData.getAvatarUrl + img.avatar.avatar-image(src=userData.getAvatarUrl) else +userAvatarInitials(userId=userData._id) |