提交 4df19b3f 编写于 作者: S Santiago Pastorino

Allow actions which start with A-Za-z_ only

上级 3519d61a
......@@ -726,7 +726,7 @@ def match(*args)
path = options.delete(:path)
action = args.first
if action && action.to_s =~ /^[\w_]+$/
if action && action.to_s =~ /^[A-Za-z_]\w*$/
path = path_for_action(action, path)
options[:action] ||= action
options[:as] = name_for_action(action, options[:as])
......
......@@ -188,7 +188,9 @@ def self.matches?(request)
end
end
resources :sheep
resources :sheep do
get "_it", :on => :member
end
resources :clients do
namespace :google do
......@@ -996,6 +998,7 @@ def test_resources_for_uncountable_names
assert_equal '/sheep/1', sheep_path(1)
assert_equal '/sheep/new', new_sheep_path
assert_equal '/sheep/1/edit', edit_sheep_path(1)
assert_equal '/sheep/1/_it', _it_sheep_path(1)
end
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册