Commit 7ddd5846 authored by GitLab Bot's avatar GitLab Bot

Add latest changes from gitlab-org/gitlab@master

parent 839c080d
...@@ -40,10 +40,20 @@ class AutocompleteController < ApplicationController ...@@ -40,10 +40,20 @@ class AutocompleteController < ApplicationController
end end
def merge_request_target_branches def merge_request_target_branches
merge_requests = MergeRequestsFinder.new(current_user, params).execute if target_branch_params.present?
target_branches = merge_requests.recent_target_branches merge_requests = MergeRequestsFinder.new(current_user, target_branch_params).execute
target_branches = merge_requests.recent_target_branches
render json: target_branches.map { |target_branch| { title: target_branch } }
else
render json: { error: _('At least one of group_id or project_id must be specified') }, status: :bad_request
end
end
private
render json: target_branches.map { |target_branch| { title: target_branch } } def target_branch_params
params.permit(:group_id, :project_id)
end end
end end
......
...@@ -277,7 +277,7 @@ class MergeRequest < ApplicationRecord ...@@ -277,7 +277,7 @@ class MergeRequest < ApplicationRecord
def self.recent_target_branches(limit: 100) def self.recent_target_branches(limit: 100)
group(:target_branch) group(:target_branch)
.select(:target_branch) .select(:target_branch)
.reorder('MAX(merge_requests.updated_at) DESC') .reorder(arel_table[:updated_at].maximum.desc)
.limit(limit) .limit(limit)
.pluck(:target_branch) .pluck(:target_branch)
end end
......
---
title: Use better context-specific empty state screens for the Security Dashboards
merge_request: 18382
author:
type: changed
---
title: Require group_id or project_id for MR target branch autocomplete action
merge_request: 20933
author:
type: performance
...@@ -2171,6 +2171,9 @@ msgstr "" ...@@ -2171,6 +2171,9 @@ msgstr ""
msgid "At least one approval from a code owner is required to change files matching the respective CODEOWNER rules." msgid "At least one approval from a code owner is required to change files matching the respective CODEOWNER rules."
msgstr "" msgstr ""
msgid "At least one of group_id or project_id must be specified"
msgstr ""
msgid "Attach a file" msgid "Attach a file"
msgstr "" msgstr ""
...@@ -11616,6 +11619,15 @@ msgstr "" ...@@ -11616,6 +11619,15 @@ msgstr ""
msgid "No value set by top-level parent group." msgid "No value set by top-level parent group."
msgstr "" msgstr ""
msgid "No vulnerabilities found for this group"
msgstr ""
msgid "No vulnerabilities found for this pipeline"
msgstr ""
msgid "No vulnerabilities found for this project"
msgstr ""
msgid "No, directly import the existing email addresses and usernames." msgid "No, directly import the existing email addresses and usernames."
msgstr "" msgstr ""
...@@ -15355,12 +15367,6 @@ msgstr "" ...@@ -15355,12 +15367,6 @@ msgstr ""
msgid "Security Reports|Undo dismiss" msgid "Security Reports|Undo dismiss"
msgstr "" msgstr ""
msgid "Security Reports|We've found no vulnerabilities for your group"
msgstr ""
msgid "Security Reports|While it's rare to have no vulnerabilities for your group, it can happen. In any event, we ask that you please double check your settings to make sure you've set up your dashboard correctly."
msgstr ""
msgid "Security configuration help link" msgid "Security configuration help link"
msgstr "" msgstr ""
...@@ -19607,6 +19613,9 @@ msgstr "" ...@@ -19607,6 +19613,9 @@ msgstr ""
msgid "We want to be sure it is you, please confirm you are not a robot." msgid "We want to be sure it is you, please confirm you are not a robot."
msgstr "" msgstr ""
msgid "We've found no vulnerabilities"
msgstr ""
msgid "Web IDE" msgid "Web IDE"
msgstr "" msgstr ""
...@@ -19675,6 +19684,18 @@ msgstr "" ...@@ -19675,6 +19684,18 @@ msgstr ""
msgid "When:" msgid "When:"
msgstr "" msgstr ""
msgid "While it's rare to have no vulnerabilities for your group, it can happen. In any event, we ask that you double check your settings to make sure you've set up your dashboard correctly."
msgstr ""
msgid "While it's rare to have no vulnerabilities for your pipeline, it can happen. In any event, we ask that you double check your settings to make sure all security scanning jobs have passed successfully."
msgstr ""
msgid "While it's rare to have no vulnerabilities for your project, it can happen. In any event, we ask that you double check your settings to make sure you've set up your dashboard correctly."
msgstr ""
msgid "While it's rare to have no vulnerabilities, it can happen. In any event, we ask that you please double check your settings to make sure you've set up your dashboard correctly."
msgstr ""
msgid "White helpers give contextual information." msgid "White helpers give contextual information."
msgstr "" msgstr ""
......
...@@ -365,35 +365,67 @@ describe AutocompleteController do ...@@ -365,35 +365,67 @@ describe AutocompleteController do
expect(json_response[3]).to match('name' => 'thumbsdown') expect(json_response[3]).to match('name' => 'thumbsdown')
end end
end end
end
context 'Get merge_request_target_branches' do context 'Get merge_request_target_branches' do
let(:user2) { create(:user) } let!(:merge_request) { create(:merge_request, source_project: project, target_branch: 'feature') }
let!(:merge_request1) { create(:merge_request, source_project: project, target_branch: 'feature') }
context 'unauthorized user' do context 'anonymous user' do
it 'returns empty json' do it 'returns empty json' do
get :merge_request_target_branches get :merge_request_target_branches, params: { project_id: project.id }
expect(json_response).to be_empty expect(response).to have_gitlab_http_status(200)
end expect(json_response).to be_empty
end end
end
context 'sign in as user without any accesible merge requests' do context 'user without any accessible merge requests' do
it 'returns empty json' do it 'returns empty json' do
sign_in(user2) sign_in(create(:user))
get :merge_request_target_branches
expect(json_response).to be_empty get :merge_request_target_branches, params: { project_id: project.id }
end
expect(response).to have_gitlab_http_status(200)
expect(json_response).to be_empty
end end
end
context 'sign in as user with a accesible merge request' do context 'user with an accessible merge request but no scope' do
it 'returns json' do it 'returns an error' do
sign_in(user) sign_in(user)
get :merge_request_target_branches
expect(json_response).to contain_exactly({ 'title' => 'feature' }) get :merge_request_target_branches
end
expect(response).to have_gitlab_http_status(400)
expect(json_response).to eq({ 'error' => 'At least one of group_id or project_id must be specified' })
end
end
context 'user with an accessible merge request by project' do
it 'returns json' do
sign_in(user)
get :merge_request_target_branches, params: { project_id: project.id }
expect(response).to have_gitlab_http_status(200)
expect(json_response).to contain_exactly({ 'title' => 'feature' })
end
end
context 'user with an accessible merge request by group' do
let(:group) { create(:group) }
let(:project) { create(:project, namespace: group) }
let(:user) { create(:user) }
it 'returns json' do
group.add_owner(user)
sign_in(user)
get :merge_request_target_branches, params: { group_id: group.id }
expect(response).to have_gitlab_http_status(200)
expect(json_response).to contain_exactly({ 'title' => 'feature' })
end end
end end
end end
......
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