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
clean
[sgn.git]
/
lib
/
SGN
/
Controller
/
People.pm
blob
e8681a330a4a4876e88cf8d4950d26dc806c1f77
1
2
package
SGN
::
Controller
::
People
;
3
4
use
Moose
;
5
6
BEGIN
{
extends
'Catalyst::Controller'
};
7
8
sub
people_search
:
Path
(
'/search/people'
)
Args
(
0
) {
9
my
$self
=
shift
;
10
my
$c
=
shift
;
11
$c
->
stash
->{
template
} =
'/search/people.mas'
;
12
13
14
}
15
16
1
;