gitlab-org--gitlab-foss/app/controllers/projects/notification_settings_controller.rb
2016-04-12 12:10:58 -03:00

16 lines
440 B
Ruby

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