aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ComponentUI/Controller/Bar.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ComponentUI/Controller/Bar.pm')
-rw-r--r--lib/ComponentUI/Controller/Bar.pm17
1 files changed, 0 insertions, 17 deletions
diff --git a/lib/ComponentUI/Controller/Bar.pm b/lib/ComponentUI/Controller/Bar.pm
deleted file mode 100644
index 7f9d6c3..0000000
--- a/lib/ComponentUI/Controller/Bar.pm
+++ /dev/null
@@ -1,17 +0,0 @@
-package ComponentUI::Controller::Bar;
-
-use strict;
-use warnings;
-use base 'Reaction::UI::CRUDController';
-use Reaction::Class;
-
-__PACKAGE__->config(
- model_base => 'TestDB',
- model_name => 'Bar',
- action => { base => { Chained => '/base', PathPart => 'bar' },
- list => { ViewPort => { layout => 'bar_list' } },
- update => { ViewPort => { layout => 'bar_form' } },
- create => { ViewPort => { layout => 'bar_form' } } },
-);
-
-1;