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
seedlot upload with accession synonyms. seedlot upload works to update existing seedlots
[sgn.git]
/
lib
/
SGN
/
Controller
/
Accession_usage.pm
blob
bdff2d7ee3bb881748703fc23b8632133905113a
1
package
SGN
::
Controller
::
Accession_usage
;
2
3
use
Moose
;
4
5
BEGIN
{
extends
'Catalyst::Controller'
};
6
7
sub
accession_usage
:
Path
(
'/accession_usage'
)
Args
(
0
) {
8
my
$self
=
shift
;
9
my
$c
=
shift
;
10
11
$c
->
stash
->{
template
} =
'/stock/accession_usage.mas'
;
12
13
}
14
15
1
;