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

use base 'Reaction::UI::CRUDController';
use Reaction::Class;

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

1;