Revision history for CatalystX-Eta
0.042 2015-03-14 16:01:35 BRT
- Controller::Search now can accept ilike and like filters.
- Controller::Search now can accept 'me.field' and 'othertable.field' too
0.04 2015-03-14 14:59:58 BRT
- new classes added:
- CatalystX::Temporal::Controller::AutoBase
- CatalystX::Temporal::Controller::AutoList
- CatalystX::Temporal::Controller::AutoObject
- CatalystX::Temporal::Controller::AutoResult
- CatalystX::Helper::DateTimeToString
- Missing Data::Verifier on cpanfile
0.0362 2015-03-14 01:23:58 BRT
- missing JSON::MaybeXS on cpanfile.
0.036 2015-03-14 01:18:50 BRT
- Added CatalystX::Eta::Controller::Order:
- but doc is missing!
- JSON::XS now is JSON::MaybeXS
- minor fixs
0.035 2015-02-25 15:03:12 BRT
- Added @{$c->req->captures} before calling $c->action_for
This fixes a bug when you have deep controller actions.
0.03 2015-02-23 16:37:14 BRT
- prepare_params_for_create and prepare_params_for_update added
Those options is for changing params before send them to schema.
sub { my ($self, $c, $params_hashref) = @_; return $params_hashref }
must return HASHREF for using on $result(set)->execute( with => $params )
0.02 2015-02-21 22:55:08 BRST
- CheckRoleForPUT and roles_delete fixed:
if the user requesting delete or update have the role,
the action will be executed.
if the role was denied and config->{check_only_roles} is not set,
the code test if the object have the column (user_id | created_by ) and
if is equals $c->user->id, the action is executed even without the role.
0.01 2015-02-21 04:39:27 BRST
- Initial release