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

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

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

1;