moved shit to trunk
[catagits/Reaction.git] / lib / ComponentUI / Controller / TestModel / Foo.pm
1 package ComponentUI::Controller::TestModel::Foo;
2
3 use base 'Reaction::UI::CRUDController';
4 use Reaction::Class;
5
6 __PACKAGE__->config(
7   model_base => 'TestModel',
8   model_name => 'Foo',
9   action => { base => { Chained => '/base', PathPart => 'testmodel/foo' } },
10 );
11
12 1;