diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2018-02-05 22:24:22 +0000 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2018-02-06 16:55:16 +0000 |
commit | db8898037b67265b18ffac9ef8b6696dc6d33d22 (patch) | |
tree | b29d1aa0158319ae22b505054c6ccdc83eb9cfcf /perllib/FixMyStreet/App.pm | |
parent | 35445b8cc7ae02acdfbfc3e2e9da15b022736906 (diff) |
Add admin ability to log user out.
Diffstat (limited to 'perllib/FixMyStreet/App.pm')
-rw-r--r-- | perllib/FixMyStreet/App.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/App.pm b/perllib/FixMyStreet/App.pm index e47336b7c..a3331d32a 100644 --- a/perllib/FixMyStreet/App.pm +++ b/perllib/FixMyStreet/App.pm @@ -18,13 +18,14 @@ use URI; use URI::QueryParam; use Catalyst ( - 'Static::Simple', # + 'Static::Simple', 'Unicode::Encoding', 'Session', 'Session::Store::DBIC', 'Session::State::Cookie', # FIXME - we're using our own override atm 'Authentication', 'SmartURI', + 'FixMyStreet::Session::StoreSessions', ); extends 'Catalyst'; |