File: SessionExpiry.pm

package info (click to toggle)
libcatalyst-plugin-session-perl 0.44-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 284 kB
  • sloc: perl: 937; makefile: 2
file content (21 lines) | stat: -rw-r--r-- 302 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package SessionExpiry;
use Catalyst
    qw/Session Session::Store::Dummy Session::State::Cookie Authentication/;

use strict;
use warnings;

__PACKAGE__->config(
    'Plugin::Session' => {

        expires          => 20,
        expiry_threshold => 10,

    },

);

__PACKAGE__->setup;

__PACKAGE__;