Module: RedmineNonprojectModules::Patches::ActiveScaffoldJsResponse

Defined in:
lib/redmine_nonproject_modules/patches/active_scaffold_js_response.rb

Defined Under Namespace

Modules: SingletonMethods

Instance Method Summary collapse

Instance Method Details

#fix_active_scaffold_js_response_content_typeObject



22
23
24
25
26
# File 'lib/redmine_nonproject_modules/patches/active_scaffold_js_response.rb', line 22

def fix_active_scaffold_js_response_content_type
  return unless request.format.js? && response.media_type == 'text/html'

  response.content_type = 'text/plain'
end