summaryrefslogtreecommitdiffstats
path: root/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'config.py')
-rw-r--r--config.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/config.py b/config.py
index af334c7..9704ca6 100644
--- a/config.py
+++ b/config.py
@@ -99,18 +99,28 @@ conf.registerGlobalValue(Keycloak.options, 'emailVerified',
"""
Keycloak: Whether to set newly created users email addresses to having been verified \(true, default\) or not \(false\)
"""
+ , private=True
))
conf.registerGlobalValue(Keycloak.options, 'firstName',
registry.String('Foo',
"""
Keycloak: What to set as the firstName value for newly created users.
"""
+ , private=True
))
conf.registerGlobalValue(Keycloak.options, 'lastName',
registry.String('Bar',
"""
Keycloak: What to set as the lastName value for newly created users.
"""
+ , private=True
+))
+conf.registerGlobalValue(Keycloak.options, 'ircgroup',
+ registry.String('',
+ """
+ Keycloak: Group ID for `ircprom`
+ """
+ , private=True
))
# vim:set shiftwidth=4 tabstop=4 expandtab textwidth=79: