summaryrefslogtreecommitdiff
path: root/app/views/profiles/notifications
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-09-14 19:51:54 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-09-14 19:51:54 +0300
commit8210d813812571b479d630ff61410347f8ebeb5b (patch)
treefa44f3fea3c878eb985f59e3245a9a6b597eb1c3 /app/views/profiles/notifications
parentc69b8e04591907d030b2cd544a606fd0e576116a (diff)
downloadgitlab-ce-8210d813812571b479d630ff61410347f8ebeb5b.tar.gz
Replace old references of users_project & users_group
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/views/profiles/notifications')
-rw-r--r--app/views/profiles/notifications/show.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/profiles/notifications/show.html.haml b/app/views/profiles/notifications/show.html.haml
index efe9c032190..3e28f2f5f90 100644
--- a/app/views/profiles/notifications/show.html.haml
+++ b/app/views/profiles/notifications/show.html.haml
@@ -39,13 +39,13 @@
.col-md-6
%h4 Groups:
%ul.bordered-list
- - @users_groups.each do |users_group|
+ - @group_members.each do |users_group|
- notification = Notification.new(users_group)
= render 'settings', type: 'group', membership: users_group, notification: notification
.col-md-6
%h4 Projects:
%ul.bordered-list
- - @users_projects.each do |users_project|
+ - @project_members.each do |users_project|
- notification = Notification.new(users_project)
= render 'settings', type: 'project', membership: users_project, notification: notification