From 336bc95e361ec51b445732129f61f82903a47fdf Mon Sep 17 00:00:00 2001 From: Andreas Brandl Date: Fri, 16 Feb 2018 12:35:58 +0100 Subject: Push feature-related query part up. --- app/finders/snippets_finder.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'app/finders') diff --git a/app/finders/snippets_finder.rb b/app/finders/snippets_finder.rb index 33359fa1efb..7a343faecdd 100644 --- a/app/finders/snippets_finder.rb +++ b/app/finders/snippets_finder.rb @@ -56,8 +56,7 @@ class SnippetsFinder < UnionFinder end def feature_available_projects - projects = Project.public_or_visible_to_user(current_user) - .with_feature_available_for_user(:snippets, current_user).select(:id) + projects = Project.public_or_visible_to_user_with_feature_available(current_user, :snippets).select(:id) arel_query = Arel::Nodes::SqlLiteral.new(projects.to_sql) table[:project_id].in(arel_query) end -- cgit v1.2.1