UtopiaSourceUtopiaControllerHandlersPassthrough

module Passthrough

Passes response values through without transformation.

Definitions

def self.split(*arguments)

Delegate content-type splitting to the wildcard media range.

Signature

parameter arguments Array

The arguments.

returns Array

The resulting values.

Implementation

def self.split(*arguments)
	WILDCARD.split(*arguments)
end

def self.call(context, request, media_range, object, **options)

Accept an object without producing a response.

Signature

parameter context Object

The context.

parameter request Rack::Request

The request.

parameter media_range HTTP::Accept::MediaTypes::MediaRange

The negotiated media range.

parameter object Object

The object.

parameter options Hash

The options.

returns Nil

No response is produced.

Implementation

def self.call(context, request, media_range, object, **options)
	# Do nothing.
end