site_cubicweb.py
changeset 11673 c3a583e38360
parent 11636 2babe3694bed
--- a/site_cubicweb.py	Tue Dec 15 12:14:47 2015 +0100
+++ b/site_cubicweb.py	Mon Feb 22 15:57:10 2016 +0100
@@ -1,22 +1,4 @@
-from logilab.common.configuration import REQUIRED
-
 import cubicweb.schema
 
 cubicweb.schema.INTERNAL_TYPES.add('CWSession')
 
-options = (
-    ('pyramid-auth-secret', {
-        'type': 'string',
-        'default': REQUIRED,
-        'help': 'Secret phrase to encrypt the authentication cookie',
-        'group': 'pyramid',
-        'level': 3
-    }),
-    ('pyramid-session-secret', {
-        'type': 'string',
-        'default': REQUIRED,
-        'help': 'Secret phrase to sign the session cookie',
-        'group': 'pyramid',
-        'level': 3
-    }),
-)