summaryrefslogtreecommitdiff
path: root/app/controllers/profiles/notifications_controller.rb
blob: 18ee55c839a649f11c787829119e0c637d40351c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
class Profiles::NotificationsController < Profiles::ApplicationController
  def show
    @user = current_user
    @group_notifications = current_user.notification_settings.for_groups
    @project_notifications = current_user.notification_settings.for_projects
  end

  def update
    if current_user.update_attributes(user_params)
      flash[:notice] = "Notification settings saved"
    else
      flash[:alert] = "Failed to save new settings"
    end

    redirect_back_or_default(default: profile_notifications_path)
  end

  def user_params
    params.require(:user).permit(:notification_email, :notification_level)
  end
end