| Catalyst-Controller-RequestToken documentation | Contained in the Catalyst-Controller-RequestToken distribution. |
Catalyst::Controller::RequestToken::Action::CreateToken
Hideo Kimura <<hide<at>hide-k.net>>
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the LICENSE file included with this module.
| Catalyst-Controller-RequestToken documentation | Contained in the Catalyst-Controller-RequestToken distribution. |
package Catalyst::Controller::RequestToken::Action::CreateToken; use strict; use warnings; use base qw(Catalyst::Action); use MRO::Compat; sub execute { my $self = shift; my ( $controller, $c, @args ) = @_; $controller->create_token; return $self->next::method(@_); } 1; __END__