gitlab-org--gitlab-foss/app/finders
Dmitriy Zaporozhets c1c93f4f7a Fix tests and unassigned filter for issues. Updated CHANGELOG 2015-03-27 00:27:51 -07:00
..
README.md Improve formatting of app/finders/README.md 2014-10-07 22:39:45 +02:00
groups_finder.rb
issuable_finder.rb Fix tests and unassigned filter for issues. Updated CHANGELOG 2015-03-27 00:27:51 -07:00
issues_finder.rb
merge_requests_finder.rb
notes_finder.rb Add index on order columns 2015-02-06 10:21:48 -08:00
projects_finder.rb Fix finder and tests for new membership models 2014-09-15 16:45:28 +03:00
snippets_finder.rb Rubocop: indentation fixes Yay!!! 2015-02-02 21:59:28 -08:00
trending_projects_finder.rb Fix trending projects ordering 2015-02-18 22:23:24 -08: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.execute(project, user, filter)

It will help keep models thiner.