diff options
author | Matthew Somerville <matthew@mysociety.org> | 2011-06-29 09:59:49 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2011-06-29 22:40:21 +0100 |
commit | d6d8dc4e0080e3184751cf381bbd14581c970c62 (patch) | |
tree | 71ea2cdc9e8fd5c123b80e71a9af6e7fe0e6f6d6 | |
parent | 889d95a77db67081127bc84a51059916dfcc4997 (diff) |
Four week default session length.
-rw-r--r-- | perllib/FixMyStreet/App.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/perllib/FixMyStreet/App.pm b/perllib/FixMyStreet/App.pm index a63ac1fb4..90f1f24bc 100644 --- a/perllib/FixMyStreet/App.pm +++ b/perllib/FixMyStreet/App.pm @@ -51,8 +51,7 @@ __PACKAGE__->config( 'Plugin::Session' => { # Catalyst::Plugin::Session::Store::DBIC dbic_class => 'DB::Session', - expires => 3600 * 24 * 7 * 6, # 6 months - cookie_expires => 0 + expires => 3600 * 24 * 7 * 4, # 4 weeks }, 'Plugin::Authentication' => { |