gitlab-org--gitlab-foss/app/finders
Sean McGivern 0c3ec51f40 Merge branch 'issue_40500' into 'master'
Improve filtering issues by label performance

Closes #40500 and #37143

See merge request gitlab-org/gitlab-ce!16136
2018-01-05 17:54:56 +00:00
..
admin
concerns Support custom attributes on users 2017-09-28 16:49:42 +00:00
README.md
access_requests_finder.rb
autocomplete_users_finder.rb Fix users autocomplete in a subgroup 2017-11-13 13:19:54 +00:00
branches_finder.rb Add case insensitive branches search 2017-10-23 06:37:25 +03:00
clusters_finder.rb Use attr_reader instead of instance variables 2017-11-28 14:39:18 +01:00
contributed_projects_finder.rb
environments_finder.rb
events_finder.rb
fork_projects_finder.rb
group_descendants_finder.rb Pass `archived:` as a keyword argument 2017-10-12 11:36:54 +02:00
group_finder.rb
group_members_finder.rb
group_projects_finder.rb Merge group hierarchies when parents are shared 2017-10-04 22:49:41 +02:00
groups_finder.rb Support custom attributes on groups 2017-11-06 10:51:50 +01:00
issuable_finder.rb Improve filtering issues by label performance 2018-01-05 13:26:30 -02:00
issues_finder.rb
joined_groups_finder.rb
labels_finder.rb EE-BACKPORT group boards 2018-01-04 17:28:10 -02:00
members_finder.rb
merge_request_target_project_finder.rb Find branches in all projects in the fork network 2017-10-07 11:46:23 +02:00
merge_requests_finder.rb
milestones_finder.rb
move_to_project_finder.rb
notes_finder.rb Use Gitlab::SQL::Pattern where appropriate 2017-11-24 17:28:50 +01:00
personal_access_tokens_finder.rb Adds Rubocop rule for line break after guard clause 2017-11-16 17:58:29 +01:00
personal_projects_finder.rb
pipeline_schedules_finder.rb
pipelines_finder.rb
projects_finder.rb Support custom attributes on projects 2017-11-06 10:51:46 +01:00
runner_jobs_finder.rb Refactorize jobs finding logic 2017-11-28 00:36:50 +01:00
snippets_finder.rb
tags_finder.rb
todos_finder.rb
union_finder.rb
users_finder.rb Added default order to UserFinder 2017-12-04 09:49:53 +00:00

README.md

Finders

This type of classes responsible for collection items based on different conditions. To prevent lookup methods in models like this:

class Project
  def issues_for_user_filtered_by(user, filter)
    # A lot of logic not related to project model itself
  end
end

issues = project.issues_for_user_filtered_by(user, params)

Better use this:

issues = IssuesFinder.new(project, user, filter).execute

It will help keep models thiner.