Added error flag to validation errors and added age_range api endpoint

This commit is contained in:
Tom Bloor 2017-04-23 14:02:10 +01:00
parent 6fac2058bc
commit b03b7ccc5f
3 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,12 @@
package Pear::LocalLoop::Controller::Api::Info;
use Mojo::Base 'Mojolicious::Controller';
sub get_ages {
my $c = shift;
my $ages = $c->schema->resultset('AgeRange');
$c->render( json => { ages => [ $ages->all ] } );
}
1;