gitlab-org--gitlab-foss/app/finders
Dmitriy Zaporozhets 4c6859a2de
Prevent duplicates in issue finder when filter by label
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-07-30 13:26:23 +03:00
..
README.md Update tests and fix Finders readme 2014-02-25 19:21:53 +02:00
base_finder.rb Prevent duplicates in issue finder when filter by label 2014-07-30 13:26:23 +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 Fix project snippet comments loading 2014-07-02 19:53:41 +03:00
projects_finder.rb Refactor some search scopes to prevent wierd behaviour and PG::Error issues 2014-06-05 20:37:35 +03:00
trending_projects_finder.rb Explore area 2014-07-23 11:13:33 +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