Welcome to mirror list, hosted at ThFree Co, Russian Federation.

README.md « finders « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1f46518d23096345c48c3e11dadb860607b6cb14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Finders

This type of classes responsible for collection items based on different conditions.
To prevent lookup methods in models like this:

```ruby
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:

```ruby
issues = IssuesFinder.new.execute(project, user, filter)
```

It will help keep models thiner.