gitlab-org--gitlab-foss/app/finders
Dmitriy Zaporozhets d8563bd6c2 Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce 2016-06-15 10:59:33 +03:00
..
README.md
contributed_projects_finder.rb
group_projects_finder.rb
groups_finder.rb
issuable_finder.rb Improve Issuable.order_labels_priority 2016-06-06 11:59:49 -05:00
issues_finder.rb
joined_groups_finder.rb
merge_requests_finder.rb
milestones_finder.rb
notes_finder.rb Fix notes on confidential issues through JSON to users without access 2016-06-14 17:51:17 -03:00
personal_projects_finder.rb
pipelines_finder.rb
projects_finder.rb
snippets_finder.rb Project members with guest role can't access confidential issues 2016-06-13 19:32:00 -03:00
todos_finder.rb Manually create todo for issuable 2016-06-14 08:36:07 +01:00
trending_projects_finder.rb
union_finder.rb

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.