epic-ts
[kivitendo-erp.git] / SL / Controller / Test.pm
1 package SL::Controller::Test;
2
3 use strict;
4
5 use parent qw(SL::Controller::Base);
6
7 use Data::Dumper;
8 use SL::ClientJS;
9
10 sub action_dump_form {
11   my ($self) = @_;
12
13   my $output = Dumper($::form);
14   $self->render(\$output, { type => 'text' });
15 }
16
17 1;