diff options
| author | Douwe Maan <douwe@gitlab.com> | 2016-06-17 23:28:22 +0000 |
|---|---|---|
| committer | Douwe Maan <douwe@gitlab.com> | 2016-06-17 23:28:22 +0000 |
| commit | 00906b5bb6cde8cb60281109060a519a54000c61 (patch) | |
| tree | f251efc0af4bebc2920c3ac4fc1398759cc490f9 /app/controllers/projects | |
| parent | 33d8972bf96d490e0a67750491249abf3d2e0d54 (diff) | |
| parent | 4b204f071e4b626d4034fe431cebc902ae6caa78 (diff) | |
| download | gitlab-ce-00906b5bb6cde8cb60281109060a519a54000c61.tar.gz | |
Merge branch 'issue_12758' into 'master'
Implement custom notification level options


part of #12758
See merge request !4389
Diffstat (limited to 'app/controllers/projects')
| -rw-r--r-- | app/controllers/projects/notification_settings_controller.rb | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/app/controllers/projects/notification_settings_controller.rb b/app/controllers/projects/notification_settings_controller.rb deleted file mode 100644 index 7d81cc03c73..00000000000 --- a/app/controllers/projects/notification_settings_controller.rb +++ /dev/null @@ -1,16 +0,0 @@ -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 |
