mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
Make named helpers unprotected without becoming actions [#4696 state:resolved]
This commit is contained in:
@@ -16,5 +16,13 @@ module ActionController
|
||||
raise "In order to use #url_for, you must include the helpers of a particular " \
|
||||
"router. For instance, `include Rails.application.routes.url_helpers"
|
||||
end
|
||||
|
||||
module ClassMethods
|
||||
def action_methods
|
||||
@action_methods ||= begin
|
||||
super - _router.named_routes.helper_names
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -68,6 +68,10 @@ module ActionDispatch
|
||||
clear!
|
||||
end
|
||||
|
||||
def helper_names
|
||||
self.module.instance_methods.map(&:to_s)
|
||||
end
|
||||
|
||||
def clear!
|
||||
@routes = {}
|
||||
@helpers = []
|
||||
@@ -176,7 +180,6 @@ module ActionDispatch
|
||||
|
||||
url_for(options)
|
||||
end
|
||||
protected :#{selector}
|
||||
END_EVAL
|
||||
helpers << selector
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user