aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2014-01-06 14:18:25 +0100
committerYves Senn <yves.senn@gmail.com>2014-01-06 14:18:53 +0100
commit2d1d426c675b35bc34a25c5a5960a7f0a75c520b (patch)
treecfa2ab2a520e7d0fee336e5297e3a3c788f7e114 /actionpack
parent6bf93b22d558c03f1406bcf72a81d9dabfd557f7 (diff)
downloadrails-2d1d426c675b35bc34a25c5a5960a7f0a75c520b.tar.gz
rails-2d1d426c675b35bc34a25c5a5960a7f0a75c520b.tar.bz2
rails-2d1d426c675b35bc34a25c5a5960a7f0a75c520b.zip
add example to the CHANGELOG entry from 3a48b83e5 [ci skip].
/cc @pixeltrix
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/CHANGELOG.md10
1 files changed, 8 insertions, 2 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index 395b783d61..75deba4a4f 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -1,6 +1,12 @@
-* Allow an absolute controller path inside a module scope
+* Allow an absolute controller path inside a module scope. Fixes #12777.
+
+ Example:
+
+ namespace :foo do
+ # will route to BarController without the namespace.
+ get '/special', to: '/bar#index'
+ end
- Fixes #12777.
* Unique the segment keys array for non-optimized url helpers