X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Controller-DBIC-API.git;a=blobdiff_plain;f=lib%2FCatalyst%2FController%2FDBIC%2FAPI.pm;h=c173dcd85fc5b03e8ac77aa7e0e8a8319a7aca5b;hp=3f3346670bba9673457e275d1493aaffdf06c675;hb=73517f507669cada16503d144607e42c86b65f64;hpb=dde946747a25b53c539c4ff1043c1f7601364d11 diff --git a/lib/Catalyst/Controller/DBIC/API.pm b/lib/Catalyst/Controller/DBIC/API.pm index 3f33466..c173dcd 100644 --- a/lib/Catalyst/Controller/DBIC/API.pm +++ b/lib/Catalyst/Controller/DBIC/API.pm @@ -122,7 +122,7 @@ sub object :Chained('setup') :CaptureArgs(1) :PathPart('') unless(defined($vals)) { # no data root, assume the request_data itself is the payload - $vals = [$c->req->request_data || {}]; + $vals = [$c->req->request_data]; } elsif(reftype($vals) eq 'HASH') { @@ -293,7 +293,7 @@ sub inflate_request List level action chained from L. List's steps are broken up into three distinct methods: L, L, and L. -The goal of this method is to call ->search() on the current_result_set, HashRefInflator the result, and return it in $c->stash->{response}->{$self->data_root}. Pleasee see the individual methods for more details on what actual processing takes place. +The goal of this method is to call ->search() on the current_result_set, HashRefInflator the result, and return it in $c->stash->{response}->{$self->data_root}. Please see the individual methods for more details on what actual processing takes place. If the L config param is defined then the hashes will contain only those columns, otherwise all columns in the object will be returned. L of course supports the function/procedure calling semantics that L. In order to have proper column names in the result, provide arguments in L (which also follows L semantics. Similarly L, L, L and L affect the maximum number of rows returned as well as the ordering and grouping. Note that if select, count, ordered_by or grouped_by request parameters are present then these will override the values set on the class with select becoming bound by the select_exposes attribute.