container support built into fields and an example of usage in ComponentUI
[catagits/Reaction.git] / lib / ComponentUI / Controller / TestModel / Bar.pm
1 package ComponentUI::Controller::TestModel::Bar;
2
3 use base 'Reaction::UI::Controller::Collection::CRUD';
4 use Reaction::Class;
5
6 __PACKAGE__->config(
7   model_name => 'TestModel',
8   collection_name => 'Bar',
9   action => {
10     base => { Chained => '/base', PathPart => 'testmodel/bar' },
11   },
12 );
13
14 1;