sub close :Chained('task_setup') PathPart Args(0) {
my ($self, $c) = @_;
$c->stash->{task}->close;
$c->flash->{message} = "The task was closed.";
$c->res->redirect($c->uri_for('/my/queue'));
}
| Catalyst | Maintainable web apps made easy! | #110 |
sub close :Chained('task_setup') PathPart Args(0) {
my ($self, $c) = @_;
$c->stash->{task}->close;
$c->flash->{message} = "The task was closed.";
$c->res->redirect($c->uri_for('/my/queue'));
}
| Copyright © 2007 Jonathan Rockway |