gitlab-org--gitlab-foss/app/finders
Douglas Barbosa Alexandre adb8b82858 Skip authorization check when searching for labels on IssuableFinder 2016-10-31 23:27:49 -02:00
..
README.md
access_requests_finder.rb Use Ability.allowed? instead of current_user.can? in AccessRequestsFinder 2016-09-28 08:46:59 +02:00
branches_finder.rb
contributed_projects_finder.rb
group_projects_finder.rb
groups_finder.rb
issuable_finder.rb Skip authorization check when searching for labels on IssuableFinder 2016-10-31 23:27:49 -02:00
issues_finder.rb
joined_groups_finder.rb
labels_finder.rb Skip authorization check when searching for labels on IssuableFinder 2016-10-31 23:27:49 -02:00
merge_requests_finder.rb
milestones_finder.rb
move_to_project_finder.rb
notes_finder.rb
personal_projects_finder.rb
pipelines_finder.rb
projects_finder.rb
snippets_finder.rb
tags_finder.rb
todos_finder.rb
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.