From 31ed2ed1fe49858498a60f0fb51da8edb5e5df5a Mon Sep 17 00:00:00 2001 From: Georg Date: Thu, 2 Sep 2021 19:43:22 +0200 Subject: IRC<->SSO user opt-in Signed-off-by: Georg --- config.py | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'config.py') 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: -- cgit v1.2.3