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:
authorAndreas Brandl <abrandl@gitlab.com>2018-02-20 19:02:11 +0300
committerAndreas Brandl <abrandl@gitlab.com>2018-02-20 19:02:11 +0300
commit02b9fa0386bb1d96ecd9078da2fb55d8b522f70d (patch)
tree799bb6056d4f245b64d0771aa4b9d7180efff05a /app/finders/snippets_finder.rb
parent715183da4b44603232733be7ae4f7578d0eb6bde (diff)
Rename use_conditions_only option to use_where_in.
Diffstat (limited to 'app/finders/snippets_finder.rb')
-rw-r--r--app/finders/snippets_finder.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/finders/snippets_finder.rb b/app/finders/snippets_finder.rb
index 581cd5f47a7..ec61fe1892e 100644
--- a/app/finders/snippets_finder.rb
+++ b/app/finders/snippets_finder.rb
@@ -56,7 +56,7 @@ class SnippetsFinder < UnionFinder
end
def feature_available_projects
- projects = Project.public_or_visible_to_user(current_user, use_conditions_only: false) do |part|
+ projects = Project.public_or_visible_to_user(current_user, use_where_in: false) do |part|
part.with_feature_available_for_user(:snippets, current_user)
end.select(:id)