22 lines
467 B
Markdown
22 lines
467 B
Markdown
# 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(project, user, filter).execute
|
|
```
|
|
|
|
It will help keep models thiner.
|