gitlab-org--gitlab-foss/app/finders
Mark Fletcher ad3e180ed3 Introduce an Events API
* Meld the following disparate endpoints:
 * `/projects/:id/events`
 * `/events`
 * `/users/:id/events`
+ Add result filtering to the above endpoints:
 * action
 * target_type
 * before and after dates
2017-06-06 20:16:41 +08:00
..
README.md
access_requests_finder.rb
branches_finder.rb
contributed_projects_finder.rb
environments_finder.rb
events_finder.rb Introduce an Events API 2017-06-06 20:16:41 +08:00
group_finder.rb
group_members_finder.rb
group_projects_finder.rb ProjectsFinder should handle more options 2017-04-06 07:11:37 +02:00
groups_finder.rb Merge branch 'tc-fix-private-subgroups-shown' into 'security' 2017-05-10 16:48:18 +02:00
issuable_finder.rb Backport of multiple_assignees_feature [ci skip] 2017-05-04 17:11:53 +03:00
issues_finder.rb Backport of multiple_assignees_feature [ci skip] 2017-05-04 17:11:53 +03:00
joined_groups_finder.rb
labels_finder.rb ProjectsFinder should handle more options 2017-04-06 07:11:37 +02:00
members_finder.rb
merge_requests_finder.rb Ability to filter merge requests by labels and milestones 2017-04-25 22:07:38 +02:00
milestones_finder.rb
move_to_project_finder.rb
notes_finder.rb Merge branch 'snippets-finder-visibility' into 'security' 2017-05-10 16:48:18 +02:00
personal_access_tokens_finder.rb
personal_projects_finder.rb
pipeline_schedules_finder.rb Add Pipeline Schedules that supersedes experimental Trigger Schedule 2017-05-07 22:35:56 +00:00
pipelines_finder.rb Add constant as ALLOWED_INDEXED_COLUMNS 2017-05-03 02:11:51 +09:00
projects_finder.rb Add :owned param to ProjectFinder 2017-05-30 22:45:59 +02:00
snippets_finder.rb Merge branch 'snippets-finder-visibility' into 'security' 2017-05-10 16:48:18 +02:00
tags_finder.rb
todos_finder.rb Enable the Style/PreferredHashMethods cop 2017-06-02 19:11:26 +02:00
union_finder.rb
users_finder.rb Create a Users Finder 2017-05-15 13:53:12 +00:00

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.