aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ComponentUI/Controller/TestModel/Foo.pm
blob: cc821c50b2a6fec644c0aa2613a08f8ab793cfef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package ComponentUI::Controller::TestModel::Foo;

use base 'Reaction::UI::Controller::Collection::CRUD';
use Reaction::Class;

__PACKAGE__->config(
  model_name => 'TestModel',
  collection_name => 'Foo',
  action => { base => { Chained => '/base', PathPart => 'testmodel/foo' } },
);

1;