gitlab-org--gitlab-foss/app/finders
Yorick Peterse 369d34c7c8 Merge branch '42877-fix-visibility-change-performance' into 'master'
Revert Project.public_or_visible_to_user changes but apply change to SnippetsFinder

Closes #42877

See merge request gitlab-org/gitlab-ce!17476
2018-03-02 20:41:00 +00: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
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 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 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
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 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.