gitlab-org--gitlab-foss/app/finders
Jan Provaznik 1f4ee653fa Allow to include also descendant group labels
Because epic index page includes also epics from subgroups
it's necessary to also get descendant group labels for filtering.
https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/4773#note_61236542
2018-03-02 11:44:18 +01:00
..
admin Add an option to list only archived projects 2017-08-24 10:11:07 +02:00
concerns Port read_cross_project ability from EE 2018-02-22 17:11:36 +01:00
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 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 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 Enable Style/DotPosition Rubocop 👮 2017-06-21 13:48:12 +00:00
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 Port read_cross_project ability from EE 2018-02-22 17:11:36 +01:00
issues_finder.rb Refactor IssuableFinder to extract model-specific logic 2018-02-21 10:31:29 +00: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 Add source and target branch filters to merge requests API 2018-03-01 10:41:02 +00: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 Always eagerly load a note's author. 2018-02-13 18:04:52 +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 Add Pipeline Schedules that supersedes experimental Trigger Schedule 2017-05-07 22:35:56 +00:00
pipelines_finder.rb Add constant as ALLOWED_INDEXED_COLUMNS 2017-05-03 02:11:51 +09:00
projects_finder.rb Support custom attributes on projects 2017-11-06 10:51:46 +01:00
README.md
runner_jobs_finder.rb Refactorize jobs finding logic 2017-11-28 00:36:50 +01:00
snippets_finder.rb Port read_cross_project ability from EE 2018-02-22 17:11:36 +01:00
tags_finder.rb
todos_finder.rb Port read_cross_project ability from EE 2018-02-22 17:11:36 +01:00
union_finder.rb
user_recent_events_finder.rb Port read_cross_project ability from EE 2018-02-22 17:11:36 +01:00
users_finder.rb Added default order to UserFinder 2017-12-04 09:49:53 +00:00

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.