Commit 8b958468 authored by Michael Kozono's avatar Michael Kozono

Merge branch 'ag-allow-admin-settings-change' into 'master'

Allow edits to application settings in maintenance mode

See merge request gitlab-org/gitlab!51228
parents fb207682 fcd27f33
......@@ -51,7 +51,10 @@ module EE
end
def admin_settings_update?
request.path.start_with?('/api/v4/application/settings')
return false if ::Gitlab::Geo.secondary?
request.path.start_with?('/api/v4/application/settings',
'/admin/application_settings/general')
end
def geo_node_update_route?
......
......@@ -15,13 +15,20 @@ RSpec.shared_examples 'write access for a read-only GitLab (EE) instance in main
it_behaves_like 'allowlisted /admin/geo requests'
it "expects a PUT request to /admin/application_settings/general to be allowed" do
it "expects a PUT request to /api/v4/application/settings to be allowed" do
response = request.send(:put, "/api/v4/application/settings")
expect(response).not_to be_redirect
expect(subject).not_to disallow_request
end
it "expects a POST request to /admin/application_settings/general to be allowed" do
response = request.send(:post, "/admin/application_settings/general")
expect(response).not_to be_redirect
expect(subject).not_to disallow_request
end
context 'on Geo secondary' do
before do
allow(::Gitlab::Geo).to receive(:secondary?).and_return(true)
......@@ -46,6 +53,7 @@ RSpec.shared_examples 'write access for a read-only GitLab (EE) instance in main
'LFS request to locks create' | '/root/rouge.git/info/lfs/locks'
'LFS request to locks unlock' | '/root/rouge.git/info/lfs/locks/1/unlock'
'git-receive-pack' | '/root/rouge.git/git-receive-pack'
'application settings' | '/admin/application_settings/general'
end
with_them do
......@@ -56,6 +64,13 @@ RSpec.shared_examples 'write access for a read-only GitLab (EE) instance in main
expect(subject).to disallow_request
end
end
it "expects a PUT request to /api/v4/application/settings to not be allowed" do
response = request.send(:put, "/api/v4/application/settings")
expect(response).to be_redirect
expect(subject).to disallow_request
end
end
context 'when not on Geo secondary' do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment