gitlab-org--gitlab-foss/app/finders
Jan Provaznik 07a227a320 Allow to find labels in ancestor groups and better group support in label service 2018-02-26 16:23:19 +00:00
..
admin
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 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
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 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 find labels in ancestor groups and better group support in label service 2018-02-26 16:23:19 +00: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
milestones_finder.rb Port `read_cross_project` ability from EE 2018-02-22 17:11:36 +01:00
move_to_project_finder.rb
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
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 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

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.