diff options
Diffstat (limited to 'lib/DBInfoscreen/Controller/Static.pm')
-rw-r--r-- | lib/DBInfoscreen/Controller/Static.pm | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/lib/DBInfoscreen/Controller/Static.pm b/lib/DBInfoscreen/Controller/Static.pm index c25c6c5..16eeb9a 100644 --- a/lib/DBInfoscreen/Controller/Static.pm +++ b/lib/DBInfoscreen/Controller/Static.pm @@ -39,13 +39,23 @@ sub redirect { } } -sub geolocation { +sub geostop { my ($self) = @_; $self->render( - 'geolocation', - with_geolocation => 1, - hide_opts => 1 + 'geostop', + with_geostop => 1, + hide_opts => 1 + ); +} + +sub geotrain { + my ($self) = @_; + + $self->render( + 'geotrain', + with_geotrain => 1, + hide_opts => 1 ); } |