repo.or.cz
/
sgn.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add a db stats page.
[sgn.git]
/
lib
/
SGN
/
Controller
/
DbStats.pm
blob
2820c6e168ededf7a46639ba0324b81aac99f8fa
1
2
package
SGN
::
Controller
::
DbStats
;
3
4
use
Moose
;
5
6
BEGIN
{
extends
'Catalyst::Controller'
};
7
8
sub
dbstats
:
Path
(
'/breeders/dbstats'
)
Args
(
0
) {
9
my
$self
=
shift
;
10
my
$c
=
shift
;
11
12
$c
->
stash
->{
template
} =
'/breeders_toolbox/db_stats.mas'
;
13
}
14
15
1
;