summaryrefslogtreecommitdiff
path: root/app/controllers/profiles/notifications_controller.rb
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/controllers/profiles/notifications_controller.rb
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/controllers/profiles/notifications_controller.rb')
-rw-r--r--app/controllers/profiles/notifications_controller.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/profiles/notifications_controller.rb b/app/controllers/profiles/notifications_controller.rb
index 936fe071347..efed4a19ee3 100644
--- a/app/controllers/profiles/notifications_controller.rb
+++ b/app/controllers/profiles/notifications_controller.rb
@@ -3,8 +3,8 @@ class Profiles::NotificationsController < ApplicationController
def show
@notification = current_user.notification
- @users_projects = current_user.project_members
- @users_groups = current_user.group_members
+ @project_members = current_user.project_members
+ @group_members = current_user.group_members
end
def update