gitlab-org--gitlab-foss/app/finders
Dmitriy Zaporozhets 0fdce4a52b
Refactor some search scopes to prevent wierd behaviour and PG::Error issues
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-06-05 20:37:35 +03:00
..
README.md Update tests and fix Finders readme 2014-02-25 19:21:53 +02:00
base_finder.rb Refactor some search scopes to prevent wierd behaviour and PG::Error issues 2014-06-05 20:37:35 +03:00
groups_finder.rb Add GroupFinder for collection all groups user has access to 2014-06-05 20:36:59 +03: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 Default last_fetched_at to 0 for old clients 2014-04-28 16:39:42 +02:00
projects_finder.rb Refactor some search scopes to prevent wierd behaviour and PG::Error issues 2014-06-05 20:37:35 +03:00

README.md

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