Authorize read_build action when listing jobs

This commit is contained in:
Matija Čupić 2018-12-14 16:36:33 +01:00
parent f9fd9b1def
commit c7ea28612a
No known key found for this signature in database
GPG Key ID: 4BAF84FFACD2E5DE
2 changed files with 15 additions and 3 deletions

View File

@ -38,6 +38,8 @@ module API
end
# rubocop: disable CodeReuse/ActiveRecord
get ':id/jobs' do
authorize_read_builds!
builds = user_project.builds.order('id DESC')
builds = filter_builds(builds, params[:scope])

View File

@ -142,10 +142,20 @@ describe API::Jobs do
end
context 'unauthorized user' do
let(:api_user) { nil }
context 'when user is not logged in' do
let(:api_user) { nil }
it 'does not return project jobs' do
expect(response).to have_gitlab_http_status(401)
it 'does not return project jobs' do
expect(response).to have_gitlab_http_status(401)
end
end
context 'when user is guest' do
let(:api_user) { guest }
it 'does not return project jobs' do
expect(response).to have_gitlab_http_status(403)
end
end
end