class Hanami::Routing::RedirectEndpoint
@since 1.0.1 @api private
Attributes
destination_path[R]
@since 1.0.1 @api private
Public Class Methods
new(destination_path, destination)
click to toggle source
@since 1.0.1 @api private
Calls superclass method
# File lib/hanami/routing/endpoint.rb, line 183 def initialize(destination_path, destination) @destination_path = destination_path super(destination) end
Public Instance Methods
redirect?()
click to toggle source
@since 1.0.1 @api private
# File lib/hanami/routing/endpoint.rb, line 190 def redirect? true end