33362e0d16b985a905e92f96fa2cee9c171221d4
[catagits/Catalyst-Controller-DBIC-API.git] / t / lib / RestTest / Controller / API / REST / Track.pm
1 package RestTest::Controller::API::REST::Track;
2 use Moose;
3 BEGIN { extends 'Catalyst::Controller::DBIC::API::REST' }
4
5 use namespace::autoclean;
6
7 __PACKAGE__->config
8     ( action => { setup => { PathPart => 'track', Chained => '/api/rest/rest_base' } },
9       class => 'RestTestDB::Track',
10       create_requires => ['cd', 'title' ],
11       create_allows => ['cd', 'title', 'position' ],
12       update_allows => ['title', 'position', { cd => ['*'] }],
13       page => 1,
14       count => 10,
15       );
16
17 1;