method
build_named_route_call
v3.1.0 -
Show latest stable
-
0 notes -
Class: ActionDispatch::Routing::PolymorphicRoutes
- 1.0.0
- 1.1.6
- 1.2.6
- 2.0.3
- 2.1.0
- 2.2.1
- 2.3.8
- 3.0.0 (0)
- 3.0.9 (0)
- 3.1.0 (0)
- 3.2.1 (0)
- 3.2.8 (0)
- 3.2.13 (0)
- 4.0.2 (0)
- 4.1.8 (0)
- 4.2.1
- 4.2.7
- 4.2.9
- 5.0.0.1
- 5.1.7
- 5.2.3
- 6.0.0
- 6.1.3.1
- 6.1.7.7
- 7.0.0
- 7.1.3.2
- 7.1.3.4
- What's this?
build_named_route_call(records, inflection, options = {})
private
Hide source
# File actionpack/lib/action_dispatch/routing/polymorphic_routes.rb, line 161 def build_named_route_call(records, inflection, options = {}) if records.is_a?(Array) record = records.pop route = records.map do |parent| if parent.is_a?(Symbol) || parent.is_a?(String) parent else ActiveModel::Naming.route_key(parent).singularize end end else record = extract_record(records) route = [] end if record.is_a?(Symbol) || record.is_a?(String) route << record elsif record route << ActiveModel::Naming.route_key(record) route = [route.join("_").singularize] if inflection == :singular route << "index" if ActiveModel::Naming.uncountable?(record) && inflection == :plural else raise ArgumentError, "Nil location provided. Can't build URI." end route << routing_type(options) action_prefix(options) + route.join("_") end