gitlab-org--gitlab-foss/app/finders
2014-04-28 12:42:01 +02:00
..
base_finder.rb Fix deprecation warning output 2014-03-24 15:00:01 +02:00
issues_finder.rb Move services for collecting items to Finders 2014-02-25 19:15:08 +02:00
merge_requests_finder.rb Move services for collecting items to Finders 2014-02-25 19:15:08 +02:00
notes_finder.rb Serialize last_fetched_at as a string with seconds 2014-04-28 12:42:01 +02:00
projects_finder.rb Move services for collecting items to Finders 2014-02-25 19:15:08 +02:00
README.md Update tests and fix Finders readme 2014-02-25 19:21:53 +02:00

Finders

This type of classes responsible for collectiong 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