Vary on authorization for private responses
authorMarius Gavrilescu <marius@ieval.ro>
Fri, 6 Feb 2015 12:08:41 +0000 (14:08 +0200)
committerMarius Gavrilescu <marius@ieval.ro>
Fri, 6 Feb 2015 12:08:41 +0000 (14:08 +0200)
lib/Plack/App/Gruntmaster.pm

index 77a8828aab25fc687a9876ee9169cd5a68612ed5..1a0c7ab3946180379c607e6bcac81666df626f9e 100644 (file)
@@ -137,6 +137,7 @@ sub dispatch_request{
                                my ($r) = @_;
                                return $r if ref $r ne 'Plack::App::Gruntmaster::Response';
                                my @hdrs = ('X-Forever' => 1, 'Cache-Control' => "$privacy, max-age=$r->{maxage}");
+                               push @hdrs, Vary => 'Authorization' if $privacy eq 'private';
                                return [200, ['Content-Type' => 'application/json', @hdrs], [encode_json $r->{params}]] if $format eq 'json';
                                my $ret = render $r->{template}, 'en', title => $r->{title}, %{$r->{params}};
                                [200, ['Content-Type' => 'text/html', @hdrs], [encode 'UTF-8', $ret]]
This page took 0.010638 seconds and 4 git commands to generate.