gitlab-org--gitlab-foss/app/finders
Yorick Peterse 3b76b73ab1 Removed User#project_relations
GitLab EE adds an extra relation that selects a "project_id" column
instead of an "id" column, making it very hard for this method to be
re-used in EE. Since using User#authorized_groups in
ProjectsFinder#all_groups apparently has no performance impact we can
just use it and keep everything compatible with EE.
2016-03-12 15:44:48 +01:00
..
README.md Set milestone on new issue when creating issue from index with milestone filter active. 2015-05-27 14:22:11 +02:00
contributed_projects_finder.rb Refactor ProjectsFinder to not pluck IDs 2015-11-18 13:05:45 +01:00
issuable_finder.rb Updates from last code review. 2016-03-06 23:07:19 -05:00
issues_finder.rb Refactor finders. Prevent circular dependency error 2014-09-02 15:28:27 +03:00
merge_requests_finder.rb Refactor finders. Prevent circular dependency error 2014-09-02 15:28:27 +03:00
milestones_finder.rb sort milestones by due_date 2015-12-03 08:53:34 -06:00
notes_finder.rb css improvements 2015-11-19 01:25:59 +02:00
personal_projects_finder.rb Return internal projects in PersonalProjectsFinder 2015-11-18 15:08:28 +01:00
projects_finder.rb Removed User#project_relations 2016-03-12 15:44:48 +01:00
snippets_finder.rb Remove `Snippet#expires_at` 2016-03-05 18:12:17 -05:00
todos_finder.rb Rename Tasks to Todos 2016-02-20 12:39:27 -02:00
trending_projects_finder.rb Revamp trending projects query 2015-10-06 17:26:32 +02: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.