debian-mirror-gitlab/app/controllers/profiles/notifications_controller.rb

23 lines
744 B
Ruby
Raw Normal View History

2015-09-11 14:41:01 +05:30
class Profiles::NotificationsController < Profiles::ApplicationController
2014-09-02 18:07:02 +05:30
def show
@user = current_user
2016-06-22 15:30:34 +05:30
@group_notifications = current_user.notification_settings.for_groups.order(:id)
@project_notifications = current_user.notification_settings.for_projects.order(:id)
@global_notification_setting = current_user.global_notification_setting
2014-09-02 18:07:02 +05:30
end
def update
2016-06-22 15:30:34 +05:30
if current_user.update_attributes(user_params)
2016-06-02 11:05:42 +05:30
flash[:notice] = "Notification settings saved"
else
flash[:alert] = "Failed to save new settings"
2015-04-26 12:48:37 +05:30
end
2016-06-02 11:05:42 +05:30
redirect_back_or_default(default: profile_notifications_path)
2015-04-26 12:48:37 +05:30
end
def user_params
params.require(:user).permit(:notification_email)
end
2014-09-02 18:07:02 +05:30
end