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

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

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

1;