diff options
author | Tim Zallmann <tzallmann@gitlab.com> | 2017-10-02 13:35:01 +0200 |
---|---|---|
committer | Tim Zallmann <tzallmann@gitlab.com> | 2017-10-04 14:27:09 +0200 |
commit | 892b02e890be539a95e6b52feb14f5d188513700 (patch) | |
tree | 661aa31f1b090a134af39ab08a038017c2a0fbf3 /app/views/users | |
parent | 79c80de99d511d084cff072bd90192ffe8ba4cda (diff) | |
download | gitlab-ce-892b02e890be539a95e6b52feb14f5d188513700.tar.gz |
Created group_icon and group_icon_url
Tests for these new helper methods
Diffstat (limited to 'app/views/users')
-rw-r--r-- | app/views/users/_groups.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/users/_groups.html.haml b/app/views/users/_groups.html.haml index eff6c80d144..55799e10a46 100644 --- a/app/views/users/_groups.html.haml +++ b/app/views/users/_groups.html.haml @@ -2,4 +2,4 @@ - groups.each do |group| = link_to group, class: 'profile-groups-avatars inline', title: group.name do .avatar-container.s40 - = image_tag group_icon(group), class: 'avatar group-avatar s40' + = group_icon(group, class: 'avatar group-avatar s40') |