seedlot upload with accession synonyms. seedlot upload works to update existing seedlots
[sgn.git] / lib / SGN / Controller / Ambikon.pm
blobf2e222786dc9a487afd90c276d2623d3ed7bb55e
1 package SGN::Controller::Ambikon;
2 use Moose;
4 BEGIN { extends 'Catalyst::Controller' }
6 =head1 NAME
8 SGN::Controller::Ambikon - support for running the SGN app as an
9 Ambikon subsite.
11 =head1 PUBLIC ACTIONS
13 =head2 theme_template
15 Public path: /ambikon/theme_template
17 Serves a bare page with no content, suitable for use by Ambikon
18 theming postprocessors that consume the
19 L<Ambikon::IntegrationServer::Role::TemplateTheme> role.
21 =cut
23 sub theme_template : Path('/ambikon/theme_template') {
24 my ( $self, $c ) = @_;
25 $c->stash->{template} = '/ambikon/theme_template.mas';