method
use_recall_for
rails latest stable - Class:
ActionDispatch::Routing::RouteSet::Generator
use_recall_for(key)public
No documentation available.
# File actionpack/lib/action_dispatch/routing/route_set.rb, line 529
def use_recall_for(key)
if @recall[key] && ([email protected]?(key) || @options[key] == @recall[key])
if !named_route_exists? || segment_keys.include?(key)
@options[key] = @recall.delete(key)
end
end
end