gitlab-org--gitlab-foss/app/controllers/profiles/notifications_controller.rb

27 lines
924 B
Ruby
Raw Normal View History

class Profiles::NotificationsController < ApplicationController
2013-03-27 13:04:29 -04:00
layout 'profile'
def show
@notification = current_user.notification
@project_members = current_user.project_members
@group_members = current_user.group_members
2013-03-27 13:04:29 -04:00
end
def update
type = params[:notification_type]
@saved = if type == 'global'
current_user.notification_level = params[:notification_level]
current_user.save
2013-06-21 16:17:58 -04:00
elsif type == 'group'
users_group = current_user.group_members.find(params[:notification_id])
2013-06-21 16:17:58 -04:00
users_group.notification_level = params[:notification_level]
users_group.save
else
project_member = current_user.project_members.find(params[:notification_id])
project_member.notification_level = params[:notification_level]
project_member.save
end
2013-03-27 13:04:29 -04:00
end
end