summaryrefslogtreecommitdiff
path: root/app/controllers/groups/notification_settings_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/groups/notification_settings_controller.rb')
-rw-r--r--app/controllers/groups/notification_settings_controller.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/app/controllers/groups/notification_settings_controller.rb b/app/controllers/groups/notification_settings_controller.rb
new file mode 100644
index 00000000000..de13b16ccf2
--- /dev/null
+++ b/app/controllers/groups/notification_settings_controller.rb
@@ -0,0 +1,16 @@
+class Groups::NotificationSettingsController < Groups::ApplicationController
+ before_action :authenticate_user!
+
+ def update
+ notification_setting = current_user.notification_settings_for(group)
+ 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