removed transaction list code
This commit is contained in:
parent
15fe827f85
commit
9229f6ec92
2 changed files with 0 additions and 58 deletions
|
@ -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;
|
||||
|
||||
|
|
Reference in a new issue