module Redactor2Rails::Http

Public Class Methods

normalize_param(*args) click to toggle source

Convert nested Hash to HashWithIndifferentAccess and replace file upload hash with UploadedFile objects

# File lib/redactor2_rails/http.rb, line 75
def self.normalize_param(*args)
  value = args.first
  if Hash === value && value.key?(:tempfile)
    UploadedFile.new(value)
  elsif value.is_a?(String)
    QqFile.new(*args)
  else
    value
  end
end