Method: Dolt::ControllerActions#redirect
- Defined in:
- lib/libdolt/controller_actions.rb
#redirect(url, status = 302) ⇒ Object
30 31 32 33 |
# File 'lib/libdolt/controller_actions.rb', line 30 def redirect(url, status = 302) body = "You are being <a href=\"#{url}\">redirected to #{url}</a>" [status, { "Location" => url }, [body]] end |