Convert parragraph about security to a NOTE [ci skip]

This commit is contained in:
Pablo Torres 2012-12-02 16:27:13 -05:00
parent 51b26298e6
commit 25e75153b4

@ -624,7 +624,7 @@ You can match all verbs to a particular route using `via: :all`:
match 'photos', to: 'photos#show', via: :all
```
You should avoid routing all verbs to an action unless you have a good reason to, as routing both `GET` requests and `POST` requests to a single action has security implications.
NOTE: Routing both `GET` and `POST` requests to a single action has security implications. In general, you should avoid routing all verbs to an action unless you have a good reason to.
### Segment Constraints