fixed Bar Controller, tons of bugs everywhere, restructured controller namespace
[catagits/Reaction.git] / lib / ComponentUI / Controller / TestModel / Foo.pm
CommitLineData
7adfd53f 1package ComponentUI::Controller::TestModel::Foo;
2
89b70ba7 3use base 'Reaction::UI::Controller::Collection::CRUD';
7adfd53f 4use Reaction::Class;
5
6__PACKAGE__->config(
a4f82080 7 model_name => 'TestModel',
8 collection_name => 'Foo',
7adfd53f 9 action => { base => { Chained => '/base', PathPart => 'testmodel/foo' } },
10);
11
121;