File: Action.pm

package info (click to toggle)
libcatalyst-perl 5.90130-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,000 kB
  • sloc: perl: 10,925; makefile: 7
file content (11 lines) | stat: -rw-r--r-- 187 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
package TestApp::View::Dump::Action;

use strict;
use base qw[TestApp::View::Dump];

sub process {
    my ( $self, $c ) = @_;
    return $self->SUPER::process( $c, $c->action, 0 );
}

1;