gitlab-org--gitlab-foss/app/finders
Stan Hu 48f0eff37a Remove N+1 queries in /admin/projects page 2018-03-19 08:32:57 -07:00
..
admin Remove N+1 queries in /admin/projects page 2018-03-19 08:32:57 -07:00
concerns Port `read_cross_project` ability from EE 2018-02-22 17:11:36 +01:00
README.md
access_requests_finder.rb
autocomplete_users_finder.rb Added changelog for user search improvements 2018-02-22 18:55:36 +01:00
branches_finder.rb Add overview of branches and a filter for active/stale branches 2018-03-06 21:28:14 +09: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 Port `read_cross_project` ability from EE 2018-02-22 17:11:36 +01:00
fork_projects_finder.rb Introduce ForkProjectsFinder class 2017-09-20 08:27:16 +10:00
group_descendants_finder.rb Preload ancestors for subgroups matching filter 2018-01-22 17:02:04 +01:00
group_finder.rb
group_members_finder.rb
group_projects_finder.rb Include subgroup issuables on the group page 2018-02-01 07:04:37 +01:00
groups_finder.rb Support custom attributes on groups 2017-11-06 10:51:50 +01:00
issuable_finder.rb Adds updated_at filter to issues and merge_requests API 2018-03-05 14:10:32 +01:00
issues_finder.rb Adds updated_at filter to issues and merge_requests API 2018-03-05 14:10:32 +01:00
joined_groups_finder.rb
labels_finder.rb Allow to include also descendant group labels 2018-03-02 11:44:18 +01:00
members_finder.rb More readable SQL query. 2018-02-21 13:54:35 +01:00
merge_request_target_project_finder.rb Port `read_cross_project` ability from EE 2018-02-22 17:11:36 +01:00
merge_requests_finder.rb Adds updated_at filter to issues and merge_requests API 2018-03-05 14:10:32 +01:00
milestones_finder.rb Port `read_cross_project` ability from EE 2018-02-22 17:11:36 +01:00
move_to_project_finder.rb Removes default scope from sortable 2017-09-07 13:01:59 +01:00
notes_finder.rb Use limited count queries also for scoped searches 2018-03-05 13:25:56 +00: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 Extract method User#authorizations_for_projects. 2018-03-02 18:23:03 +01:00
tags_finder.rb
todos_finder.rb Remove default scope from todos 2018-03-05 16:42:51 +00:00
union_finder.rb
user_recent_events_finder.rb Leverage user_contributed_projects to find recent events. 2018-03-07 14:36:25 +01:00
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.