gitlab-org--gitlab-foss/app/finders
Toon Claes b90f1098cf Add User#full_private_access? to check if user has Private access
In CE only the admin has access to all private groups & projects. In EE also an
auditor can have full private access.

To overcome merge conflicts, or accidental incorrect access rights, abstract
this out in `User#full_private_access?`.

`User#admin?` now only should be used for admin-only features. For private
access-related features `User#full_private_access?` should be used.

Backported from gitlab-org/gitlab-ee!2199
2017-06-23 11:15:35 +02:00
..
README.md
access_requests_finder.rb
branches_finder.rb
contributed_projects_finder.rb
environments_finder.rb
events_finder.rb Enable Style/DotPosition Rubocop 👮 2017-06-21 13:48:12 +00:00
group_finder.rb
group_members_finder.rb Enable Style/DotPosition Rubocop 👮 2017-06-21 13:48:12 +00:00
group_projects_finder.rb Refactor GroupProjectsFinder#init_collection 2017-06-19 19:11:35 +02:00
groups_finder.rb Make the GroupFinder specs more strict 2017-06-15 08:46:34 +02:00
issuable_finder.rb add since and until params to issuables 2017-06-18 15:43:51 -07:00
issues_finder.rb Add User#full_private_access? to check if user has Private access 2017-06-23 11:15:35 +02:00
joined_groups_finder.rb
labels_finder.rb
members_finder.rb
merge_requests_finder.rb
milestones_finder.rb
move_to_project_finder.rb
notes_finder.rb
personal_access_tokens_finder.rb
personal_projects_finder.rb
pipeline_schedules_finder.rb
pipelines_finder.rb
projects_finder.rb Refactor GroupProjectsFinder#init_collection 2017-06-19 19:11:35 +02:00
snippets_finder.rb
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

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.