diff -r fa614537e5ee -r fc4ecec311f4 site_cubicweb.py --- a/site_cubicweb.py Fri Sep 05 18:48:33 2014 +0200 +++ b/site_cubicweb.py Thu Sep 18 11:17:57 2014 +0200 @@ -1,3 +1,15 @@ +from logilab.common.configuration import REQUIRED + import cubicweb.schema cubicweb.schema.INTERNAL_TYPES.add('CWSession') + +options = ( + ('pyramid-session-secret', { + 'type': 'string', + 'default': REQUIRED, + 'help': 'Secret phrase to sign the session cookie', + 'group': 'pyramid', + 'level': 3 + }), +)