Skip to content

Instantly share code, notes, and snippets.

Created April 18, 2017 16:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/57a9640cb142fac6354ca1f75a31f1ed to your computer and use it in GitHub Desktop.
Save anonymous/57a9640cb142fac6354ca1f75a31f1ed to your computer and use it in GitHub Desktop.
get '/Sheepdog/bovid-info?env:environment&bovid:bovid' => sub {
my $self = shift;
$self->stash(
env => $self->param('environment'),
bovid => $self->param('bovid')
);
$self->render(
template => '/Sheepdog/bovid-info'
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment