aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ComponentUI/Controller/TestModel/Baz.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ComponentUI/Controller/TestModel/Baz.pm')
-rw-r--r--lib/ComponentUI/Controller/TestModel/Baz.pm12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/ComponentUI/Controller/TestModel/Baz.pm b/lib/ComponentUI/Controller/TestModel/Baz.pm
new file mode 100644
index 0000000..ada76e4
--- /dev/null
+++ b/lib/ComponentUI/Controller/TestModel/Baz.pm
@@ -0,0 +1,12 @@
+package ComponentUI::Controller::TestModel::Baz;
+
+use base 'Reaction::UI::CRUDController';
+use Reaction::Class;
+
+__PACKAGE__->config(
+ model_base => 'TestModel',
+ model_name => 'Baz',
+ action => { base => { Chained => '/base', PathPart => 'testmodel/baz' } },
+);
+
+1;