Adding wiki functionality
- Clear out Root controller
- Add a default action (for when no URL matches)
sub default : Private {
my ($self, $c) = @_;
$c->res->status(404);
$c->stash->{template} = '404.tt';
}
- Private means "internal to Catalyst"