Add latest changes from gitlab-org/gitlab@master

This commit is contained in:
GitLab Bot
2020-09-01 12:11:01 +00:00
parent a928c5170f
commit 08b3b98051
162 changed files with 4527 additions and 128 deletions

View File

@ -0,0 +1,9 @@
# frozen_string_literal: true
module Constraints
class JiraEncodedUrlConstrainer
def matches?(request)
request.path.starts_with?('/-/jira') || request.params[:project_id].include?(Gitlab::Jira::Dvcs::ENCODED_SLASH)
end
end
end