summaryrefslogtreecommitdiff
path: root/app/controllers/notification_settings_controller.rb
blob: 5d425ad842057d41f8b47906aeff983ca3f7d249 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
class NotificationSettingsController < ApplicationController
  before_action :authenticate_user!

  def create
    project = current_user.projects.find(params[:project][:id])

    @notification_setting = current_user.notification_settings_for(project)
    @saved = @notification_setting.update_attributes(notification_setting_params)

    render_response
  end

  def update
    @notification_setting = current_user.notification_settings.find(params[:id])
    @saved = @notification_setting.update_attributes(notification_setting_params)

    render_response
  end

  private

  def render_response
    render json: {
      html: view_to_html_string("notifications/buttons/_notifications", notification_setting: @notification_setting),
      saved: @saved
    }
  end

  def notification_setting_params
    allowed_fields = NotificationSetting::EMAIL_EVENTS.dup
    allowed_fields << :level
    params.require(:notification_setting).permit(allowed_fields)
  end
end