gitlab-org--gitlab-foss/app/finders
Douwe Maan 56de781a2c Revert "Enable Style/DotPosition"
This reverts commit e00fb2bdc2090e9cabeb1eb35a2672a882cc96e9.

# Conflicts:
#	.rubocop.yml
#	.rubocop_todo.yml
#	lib/gitlab/ci/config/entry/global.rb
#	lib/gitlab/ci/config/entry/jobs.rb
#	spec/lib/gitlab/ci/config/entry/factory_spec.rb
#	spec/lib/gitlab/ci/config/entry/global_spec.rb
#	spec/lib/gitlab/ci/config/entry/job_spec.rb
#	spec/lib/gitlab/ci/status/build/factory_spec.rb
#	spec/lib/gitlab/incoming_email_spec.rb
2017-02-23 09:33:19 -06:00
..
README.md
access_requests_finder.rb
branches_finder.rb
contributed_projects_finder.rb
environments_finder.rb Revert "Enable Style/DotPosition" 2017-02-23 09:33:19 -06:00
group_members_finder.rb Revert "Prefer leading style for Style/DotPosition" 2017-02-23 09:33:05 -06:00
group_projects_finder.rb
groups_finder.rb
issuable_finder.rb Enable Style/MutableConstant 2017-02-23 09:31:56 -06:00
issues_finder.rb add a :iids param to IssuableFinder 2017-02-17 20:28:32 +02:00
joined_groups_finder.rb
labels_finder.rb
members_finder.rb
merge_requests_finder.rb add a :iids param to IssuableFinder 2017-02-17 20:28:32 +02:00
milestones_finder.rb
move_to_project_finder.rb
notes_finder.rb Fix code for cops 2017-02-23 09:31:57 -06:00
personal_projects_finder.rb
pipelines_finder.rb Adds Pending and Finished tabs to pipelines page 2017-02-16 22:25:01 +00:00
projects_finder.rb
snippets_finder.rb
tags_finder.rb
todos_finder.rb Enable Style/WordArray 2017-02-23 09:32:41 -06:00
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.