Flowdock
assign_default_content_type_and_charset!() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_dispatch/http/response.rb, line 450
    def assign_default_content_type_and_charset!
      return if content_type

      ct = parse_content_type
      set_content_type(ct.mime_type || Mime[:html].to_s,
                       ct.charset || self.class.default_charset)
    end
Register or log in to add new notes.