13 lines
137 B
Markdown
13 lines
137 B
Markdown
# early returns
|
|
|
|
## in controllers
|
|
|
|
good
|
|
|
|
```
|
|
... code
|
|
|
|
return if !DossierSearchService.id_compatible?(@search_terms)
|
|
|
|
... more code
|
|
```
|