removed transaction list code

This commit is contained in:
Finn 2018-03-15 13:07:29 +00:00
parent 15fe827f85
commit 9229f6ec92
2 changed files with 0 additions and 58 deletions

View file

@ -6,21 +6,6 @@ has result_set => sub {
return $c->schema->resultset('Transaction');
};
sub index {
my $c = shift;
my $transactions = $c->result_set->search(
undef, {
page => $c->param('page') || 1,
rows => 10,
order_by => { -desc => 'submitted_at' },
},
);
$c->stash(
transactions => $transactions,
);
}
sub read {
my $c = shift;