v1.21
[catagits/Catalyst-Action-REST.git] / lib / Catalyst / Action / Serialize / View.pm
index fbfa7f4..c313843 100644 (file)
@@ -1,16 +1,18 @@
 package Catalyst::Action::Serialize::View;
+
 use Moose;
 use namespace::autoclean;
 
 extends 'Catalyst::Action';
 
-our $VERSION = '0.84';
-$VERSION = eval $VERSION;
-
 sub execute {
     my $self = shift;
     my ( $controller, $c, $view ) = @_;
 
+    # Views don't care / are not going to render an entity for 3XX
+    # responses.
+    return 1 if $c->response->status =~ /^(?:204|3\d\d)$/;
+
     my $stash_key = (
             $controller->{'serialize'} ?
                 $controller->{'serialize'}->{'stash_key'} :
@@ -33,4 +35,6 @@ sub execute {
     }
 }
 
+__PACKAGE__->meta->make_immutable;
+
 1;