Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-04-28 12:09:34 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-04-28 12:09:34 +0300
commit0f59ad0c29c8679957c716317c842f606177f223 (patch)
tree387d1f932ad462e2906c840160e0305671acc274 /lib/gitlab/search
parent99454db49e04656e8df692c5a1c4582fec50eee3 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/gitlab/search')
-rw-r--r--lib/gitlab/search/parsed_query.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gitlab/search/parsed_query.rb b/lib/gitlab/search/parsed_query.rb
index f3136fff294..1f6e0519b4c 100644
--- a/lib/gitlab/search/parsed_query.rb
+++ b/lib/gitlab/search/parsed_query.rb
@@ -3,8 +3,6 @@
module Gitlab
module Search
class ParsedQuery
- prepend_if_ee('EE::Gitlab::Search::ParsedQuery') # rubocop: disable Cop/InjectEnterpriseEditionModule
-
attr_reader :term, :filters
def initialize(term, filters)
@@ -25,3 +23,5 @@ module Gitlab
end
end
end
+
+Gitlab::Search::ParsedQuery.prepend_if_ee('EE::Gitlab::Search::ParsedQuery')