gitlab-org--gitlab-foss/app/finders
Andreas Brandl 988dc80585
Further remove code branches by database type
We dropped MySQL support and a lot of mysql specific code has been
removed in https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/29608.

This comes in from the other direction and removes any `if postgresql?`
branches.
2019-07-29 12:47:06 +02:00
..
admin add tag filter to admin runners page 2019-02-27 20:19:49 +01:00
autocomplete Removed project autocomplete pagination 2019-07-22 11:44:20 +00:00
boards Move Multiple Issue Boards for Projects to Core 2019-06-26 12:28:00 +03:00
clusters Move file one folder level up to avoid namespace conflict 2019-06-03 15:42:06 +01:00
concerns Ignore ordering when calling find_by on finders 2019-02-20 11:31:06 +00:00
projects Move file one folder level up to avoid namespace conflict 2019-06-03 15:42:06 +01:00
access_requests_finder.rb
applications_finder.rb
awarded_emoji_finder.rb
branches_finder.rb Add endpoint for fetching diverging commit counts 2019-06-28 16:22:35 +03:00
cluster_ancestors_finder.rb
clusters_finder.rb
contributed_projects_finder.rb Fix contributed projects finder shown private info 2019-01-31 16:51:16 +01:00
environments_finder.rb Add name & search parameters to project environments API 2019-06-24 12:18:40 +00:00
events_finder.rb
fork_projects_finder.rb
group_descendants_finder.rb Remove code related to object hierarchy in MySQL 2019-07-25 15:35:06 +08:00
group_finder.rb
group_labels_finder.rb
group_members_finder.rb
group_projects_finder.rb
groups_finder.rb Fix group transfer selection possibilities 2019-04-02 06:49:11 +00:00
issuable_finder.rb Further remove code branches by database type 2019-07-29 12:47:06 +02:00
issues_finder.rb Add improvements to the global search process 2019-05-07 11:08:25 +00:00
joined_groups_finder.rb
labels_finder.rb
license_template_finder.rb
members_finder.rb Further remove code branches by database type 2019-07-29 12:47:06 +02:00
merge_request_target_project_finder.rb
merge_requests_finder.rb Fix IDE detecting MR from fork branch 2019-04-05 07:29:53 +00:00
milestones_finder.rb Adds milestone search 2019-01-24 18:44:09 +01:00
notes_finder.rb Revert "Merge branch '52123-issuable-actions-notesfinder-pderichs' into 'master'" 2019-07-27 04:28:56 +00:00
pending_todos_finder.rb
personal_access_tokens_finder.rb
personal_projects_finder.rb
pipeline_schedules_finder.rb
pipelines_finder.rb
projects_finder.rb Add improvements to the global search process 2019-05-07 11:08:25 +00:00
README.md
releases_finder.rb
remote_mirror_finder.rb
runner_jobs_finder.rb Adding order by to list runner jobs api. 2019-07-05 14:24:56 +05:30
snippets_finder.rb Allow all personal snippets to be accessed by API 2019-03-06 09:05:03 +00:00
tags_finder.rb
template_finder.rb
todos_finder.rb
union_finder.rb
user_finder.rb
user_recent_events_finder.rb
users_finder.rb
users_with_pending_todos_finder.rb

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.