method

_render_in_priorities

_render_in_priorities(options)
private

No documentation available.

# File actionpack/lib/action_controller/metal/rendering.rb, line 63
      def _render_in_priorities(options)
        RENDER_FORMATS_IN_PRIORITY.each do |format|
          return options[format] if options.key?(format)
        end

        nil
      end