- Add example of explicitly stating action to ComponentUI
- Don't override custom location in push_viewport
- Wire layout_args, which was forgotten + example of how to use it
+ - CRUD functionality is now implemented as roles, so it can be used
+ without needing to use Controller::Collection::CRUD
0.002000 - 29 Apr 2008
- Update CheckUniques role to use around instead of overrides
- Stop using ACCEPT_CONTEXT, use InstancePerContext instead
requires 'MooseX::Types::URI' => '0.02';
requires 'MooseX::Types::Common' => '0.001000';
requires 'MooseX::Types::DateTime' => '0.03';
+requires 'MooseX::MethodAttributes' => '0.18';
requires 'Path::Class::Dir';
requires 'Path::Class::File';
requires 'Scalar::Util' => '1.19';
__PACKAGE__->config(
action => {
list => { Chained => 'base', PathPart => '' },
- object => { Chained => 'base', PathPart => 'id', CaptureArgs => 1, },
+ object => { Chained => 'base', PathPart => 'id' },
view => { Chained => 'object', },
},
);
with(
'Reaction::UI::Controller::Role::Action::Create',
-);
-
-with(
-# 'Reaction::UI::Controller::Role::Action::Create',
'Reaction::UI::Controller::Role::Action::Update',
'Reaction::UI::Controller::Role::Action::Delete',
'Reaction::UI::Controller::Role::Action::DeleteAll',