gitlab-org--gitlab-foss/app/finders
Paul Slaughter 59ac0924da Fix IDE detecting MR from fork branch
**Why?**
Currently the IDE loads a merge request based on only the
`source_branch` name. This means it loads MR's from
forks that have the same branch name (not good).

- This required updating the BE API to accept `source_project_id`
2019-04-05 07:29:53 +00:00
..
admin add tag filter to admin runners page 2019-02-27 20:19:49 +01:00
autocomplete use functional style for tags finder 2019-02-27 20:20:24 +01:00
concerns Ignore ordering when calling find_by on finders 2019-02-20 11:31:06 +00:00
projects Add project http fetch statistics API 2019-02-27 11:52:35 +01:00
README.md
access_requests_finder.rb
applications_finder.rb
awarded_emoji_finder.rb
branches_finder.rb
cluster_ancestors_finder.rb Use finder to decide to show note to user 2018-12-17 09:51:53 +13:00
clusters_finder.rb
contributed_projects_finder.rb Fix contributed projects finder shown private info 2019-01-31 16:51:16 +01:00
environments_finder.rb
events_finder.rb Hide confidential events in ruby 2018-12-17 18:47:53 +01:00
fork_projects_finder.rb
group_descendants_finder.rb Merge branch 'fix-misspellings-app-comments' into 'master' 2019-02-26 12:25:01 +01:00
group_finder.rb
group_labels_finder.rb
group_members_finder.rb
group_projects_finder.rb
groups_finder.rb Fix group transfer selection possibilities 2019-04-02 06:49:11 +00:00
issuable_finder.rb Consider array params on rendering MR list on dashboard 2019-04-04 14:54:25 +00:00
issues_finder.rb Merge branch 'filter-confidential-issues' into 'master' 2019-02-26 12:24:39 +01:00
joined_groups_finder.rb
labels_finder.rb
license_template_finder.rb
members_finder.rb
merge_request_target_project_finder.rb
merge_requests_finder.rb Fix IDE detecting MR from fork branch 2019-04-05 07:29:53 +00:00
milestones_finder.rb Adds milestone search 2019-01-24 18:44:09 +01:00
notes_finder.rb
pending_todos_finder.rb
personal_access_tokens_finder.rb
personal_projects_finder.rb
pipeline_schedules_finder.rb
pipelines_finder.rb Rename project's pipelines relation 2018-12-05 14:39:15 +00:00
projects_finder.rb Optimize /api/v4/projects endpoint for visibility level 2019-03-27 06:15:33 -05:00
releases_finder.rb ReleasesFinder will always return a relation 2018-12-31 12:05:56 +09:00
remote_mirror_finder.rb Send a notification email on mirror update errors 2018-12-11 23:08:17 -03:00
runner_jobs_finder.rb
snippets_finder.rb Allow all personal snippets to be accessed by API 2019-03-06 09:05:03 +00:00
tags_finder.rb
template_finder.rb
todos_finder.rb
union_finder.rb
user_finder.rb
user_recent_events_finder.rb
users_finder.rb
users_with_pending_todos_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.