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, 0 insertions, 16 deletions
diff --git a/app/controllers/groups/notification_settings_controller.rb b/app/controllers/groups/notification_settings_controller.rb
deleted file mode 100644
index de13b16ccf2..00000000000
--- a/app/controllers/groups/notification_settings_controller.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-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