Skip to content

Commit

Permalink
strong parameters example for default values using fetch. [ci skip]
Browse files Browse the repository at this point in the history
Origin: rails#9534.
  • Loading branch information
senny committed Mar 5, 2013
1 parent 40936da commit aeb48c3
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions guides/source/action_controller_overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,18 @@ permitted scalar values allowed), a `hobbies` attribute as an array of
permitted scalar values, and a `family` attribute which is restricted
to having a `name` (any permitted scalar values allowed, too).

#### More Examples

You want to also use the permitted attributes in the `new`
action. This raises the problem that you can't use `require` on the
root-key because normally it does not exist when calling `new`:

```ruby
# using `fetch` you can supply a default and use
# the Strong Parameters API from there.
params.fetch(blog:, {}).permit(:title, :author)
```

#### Outside the Scope of Strong Parameters

The strong parameter API was designed with the most common use cases
Expand Down

0 comments on commit aeb48c3

Please sign in to comment.