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

27 lines
915 B
Ruby
Raw Normal View History

class Profiles::NotificationsController < ApplicationController
2013-03-27 17:04:29 +00:00
layout 'profile'
def show
@notification = current_user.notification
@users_projects = current_user.users_projects
2013-06-21 20:17:58 +00:00
@users_groups = current_user.users_groups
2013-03-27 17:04:29 +00: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 20:17:58 +00:00
elsif type == 'group'
users_group = current_user.users_groups.find(params[:notification_id])
users_group.notification_level = params[:notification_level]
users_group.save
else
users_project = current_user.users_projects.find(params[:notification_id])
users_project.notification_level = params[:notification_level]
users_project.save
end
2013-03-27 17:04:29 +00:00
end
end