mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
Fix wildcard route code example in changelog.
This commit is contained in:
@@ -71,11 +71,11 @@
|
||||
|
||||
For example if you have this route:
|
||||
|
||||
map '*pages' => 'pages#show'
|
||||
match '*pages' => 'pages#show'
|
||||
|
||||
by requesting '/foo/bar.json', your `params[:pages]` will be equals to "foo/bar" with the request format of JSON. If you want the old 3.0.x behavior back, you could supply `:format => false` like this:
|
||||
|
||||
map '*pages' => 'pages#show', :format => false
|
||||
match '*pages' => 'pages#show', :format => false
|
||||
|
||||
* Added Base.http_basic_authenticate_with to do simple http basic authentication with a single class method call [DHH]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user