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
Merge pull request #5191 from solgenomics/topic/quality_control
[sgn.git]
/
lib
/
SGN
/
Controller
/
Search
/
Trait.pm
blob
cb19097e4b96937842f0aa7c0c78f1c1e320fcf0
1
2
package
SGN
::
Controller
::
Search
::
Trait
;
3
4
use
Moose
;
5
6
BEGIN
{
extends
'Catalyst::Controller'
; }
7
8
sub
trait_search_page
:
Path
(
'/search/traits/'
)
Args
(
0
) {
9
my
$self
=
shift
;
10
my
$c
=
shift
;
11
$c
->
stash
->{
template
} =
'/search/traits.mas'
;
12
}
13
14
1
;