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

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

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

1;