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%2FREST.pm;h=4e6c8bc0c7b0e11bd733ec1a6c04422b9c799993;hp=df5811512164d97b78bee84b74fbe4c94d9e8c73;hb=8ea592cbf64db6d549685f3962c88d925fe7cdb1;hpb=5fca1d92a1bbeb68d4c810e7e779cfb8877dff60 diff --git a/lib/Catalyst/Controller/DBIC/API/REST.pm b/lib/Catalyst/Controller/DBIC/API/REST.pm index df58115..4e6c8bc 100644 --- a/lib/Catalyst/Controller/DBIC/API/REST.pm +++ b/lib/Catalyst/Controller/DBIC/API/REST.pm @@ -10,7 +10,8 @@ __PACKAGE__->config( 'map' => { 'application/x-www-form-urlencoded' => 'JSON', 'application/json' => 'JSON', - }); + } +); =head1 DESCRIPTION @@ -47,9 +48,9 @@ Calls L. =cut -sub update_or_create_objects : POST PUT Chained('objects_no_id') PathPart('') Args(0) -{ - my ( $self, $c ) = @_; +sub update_or_create_objects : POST PUT Chained('objects_no_id') PathPart('') + Args(0) { + my ( $self, $c ) = @_; $self->update_or_create($c); } @@ -64,9 +65,9 @@ Calls L. =cut -sub delete_many_objects : DELETE Chained('objects_no_id') PathPart('') Args(0) -{ - my ( $self, $c ) = @_; +sub delete_many_objects : DELETE Chained('objects_no_id') PathPart('') + Args(0) { + my ( $self, $c ) = @_; $self->delete($c); } @@ -81,9 +82,8 @@ Calls L. =cut -sub list_objects : GET Chained('objects_no_id') PathPart('') Args(0) -{ - my ( $self, $c ) = @_; +sub list_objects : GET Chained('objects_no_id') PathPart('') Args(0) { + my ( $self, $c ) = @_; $self->list($c); } @@ -98,9 +98,9 @@ Calls L. =cut -sub update_or_create_one_object : POST PUT Chained('object_with_id') PathPart('') Args(0) -{ - my ( $self, $c ) = @_; +sub update_or_create_one_object : POST PUT Chained('object_with_id') + PathPart('') Args(0) { + my ( $self, $c ) = @_; $self->update_or_create($c); } @@ -117,7 +117,7 @@ Calls L. sub delete_one_object : DELETE Chained('object_with_id') PathPart('') Args(0) { - my ( $self, $c ) = @_; + my ( $self, $c ) = @_; $self->delete($c); } @@ -132,9 +132,8 @@ Calls L. =cut -sub list_one_object : GET Chained('object_with_id') PathPart('') Args(0) -{ - my ( $self, $c ) = @_; +sub list_one_object : GET Chained('object_with_id') PathPart('') Args(0) { + my ( $self, $c ) = @_; $self->item($c); }