summaryrefslogtreecommitdiff
path: root/spec/controllers/projects
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2016-05-20 21:04:55 +0000
committerDouwe Maan <douwe@gitlab.com>2016-05-20 21:04:55 +0000
commita97cb8f8b81defc2fac460aefa41d3522f388b18 (patch)
tree84c4bd253998da06834739fbb21feac7e33f9d2c /spec/controllers/projects
parent56eb42007ae8c3c390b35bf336884b3bad3591c5 (diff)
parent6fb9bf87c4f202dee9815c10cad9486a1077cc99 (diff)
downloadgitlab-ce-a97cb8f8b81defc2fac460aefa41d3522f388b18.tar.gz
Merge branch 'issue_9013' into 'master'
Let users set notification levels in projects which they are not members Fixes #9013 See merge request !3986
Diffstat (limited to 'spec/controllers/projects')
-rw-r--r--spec/controllers/projects/notification_settings_controller_spec.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/spec/controllers/projects/notification_settings_controller_spec.rb b/spec/controllers/projects/notification_settings_controller_spec.rb
index 4908b545648..c5d17d97ec9 100644
--- a/spec/controllers/projects/notification_settings_controller_spec.rb
+++ b/spec/controllers/projects/notification_settings_controller_spec.rb
@@ -34,5 +34,19 @@ describe Projects::NotificationSettingsController do
expect(response.status).to eq 200
end
end
+
+ context 'not authorized' do
+ let(:private_project) { create(:project, :private) }
+ before { sign_in(user) }
+
+ it 'returns 404' do
+ put :update,
+ namespace_id: private_project.namespace.to_param,
+ project_id: private_project.to_param,
+ notification_setting: { level: :participating }
+
+ expect(response.status).to eq(404)
+ end
+ end
end
end