in reply to Catalyst Framework - target tt2 view

Besides changing the view, as suggested, if you’re using sub end : ActionClass('RenderView') {}, Catalyst::Action::RenderView—and you probably should be—then all you have to do is write something to the body and the view processing will be skippped. E.g.–

sub moo : Local Args(0) { my ( $self, $c ) = @_; $c->response->body("OHAI, COW!"); }