method
normalize_conditions!
Ruby on Rails latest stable (v7.1.3.2)
-
0 notes -
Class: ActionDispatch::Routing::Mapper::Mapping
- 1.0.0
- 1.1.6
- 1.2.6
- 2.0.3
- 2.1.0
- 2.2.1
- 2.3.8
- 3.0.0
- 3.0.9
- 3.1.0
- 3.2.1
- 3.2.8
- 3.2.13
- 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?
normalize_conditions!()
private
Hide source
# File actionpack/lib/action_dispatch/routing/mapper.rb, line 171 def normalize_conditions! @conditions[:path_info] = path constraints.each do |key, condition| unless segment_keys.include?(key) || key == :controller @conditions[key] = condition end end required_defaults = [] options.each do |key, required_default| unless segment_keys.include?(key) || IGNORE_OPTIONS.include?(key) || Regexp === required_default required_defaults << key end end @conditions[:required_defaults] = required_defaults via_all = options.delete(:via) if options[:via] == :all if !via_all && options[:via].blank? msg = "You should not use the `match` method in your router without specifying an HTTP method.\n" "If you want to expose your action to both GET and POST, add `via: [:get, :post]` option.\n" "If you want to expose your action to GET, use `get` in the router:\n" " Instead of: match \"controller#action\"\n" " Do: get \"controller#action\"" raise msg end if via = options[:via] @conditions[:request_method] = Array(via).map { |m| m.to_s.dasherize.upcase } end end