
Reaction::UI::Controller::Role::RedirectTo

Provides a redirect_to method,
which aims to be a more convenient way to create internal redirects vs Catalyst::uri_for and Catalyst::Response::redirect

This method was separated out of Catalyst::Controller to facilitate deprecation. The behavior of this method is, by design, flawed and you should aim to replace any instances of it in your codebase;

Will create a uri from the arguments given and redirect to it without detaching. If captures and arguments are not explicitly given, the ones from the current request will be used. If query-parameters are not given, none will be used.
The first argument after $c cab be one of three,
the name of an action present in the controller returned by $c->controller,
an action object,
or an array reference contraining 2 items,
a controller name and an action name.

See Reaction::Class for authors.

See Reaction::Class for the license.