method
content_type_from_legacy_post_data_format_header
content_type_from_legacy_post_data_format_header()
private
Hide source
# File actionpack/lib/action_controller/request.rb, line 369 def content_type_from_legacy_post_data_format_header if x_post_format = @env['HTTP_X_POST_DATA_FORMAT'] case x_post_format.to_s.downcase when 'yaml'; 'application/x-yaml' when 'xml'; 'application/xml' end end end


