Version 2.008001
[catagits/Catalyst-Controller-DBIC-API.git] / t / lib / RestTest / Controller / API / RPC / TrackExposed.pm
CommitLineData
d2739840 1package RestTest::Controller::API::RPC::TrackExposed;
2use Moose;
3BEGIN { extends 'Catalyst::Controller::DBIC::API::RPC' }
4
5use namespace::autoclean;
6
7__PACKAGE__->config
8 ( action => { setup => { PathPart => 'track_exposed', Chained => '/api/rpc/rpc_base' } },
9 class => 'RestTestDB::Track',
10 select => [qw/position title/],
11 ordered_by => [qw/position/],
12 search_exposes => [qw/position/, { cd => [qw/title year pretend/, { 'artist' => ['*'] } ]}],
13 );
14
151;