module Roda::RodaPlugins::DisallowFileUploads::RequestMethods

def initialize(_, env)

HTML escape the input and return the escaped version.
def initialize(_, env)
  env['rack.multipart.tempfile_factory'] = NO_TEMPFILE
  super
end