blob: 7d81cc03c73f6a91bc322ca5221654ed163a03cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
class Projects::NotificationSettingsController < Projects::ApplicationController
before_action :authenticate_user!
def update
notification_setting = current_user.notification_settings_for(project)
saved = notification_setting.update_attributes(notification_setting_params)
render json: { saved: saved }
end
private
def notification_setting_params
params.require(:notification_setting).permit(:level)
end
end
|