From efc12cd05f6b8cf589cf333c4192fe9a89c83167 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Wed, 27 Jun 2018 20:00:57 +0200 Subject: [PATCH 4/5] app_settings: set password to random value by default (#24835) --- src/authentic2_auth_fc/app_settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/authentic2_auth_fc/app_settings.py b/src/authentic2_auth_fc/app_settings.py index 9ce9a26..07f6dd9 100644 --- a/src/authentic2_auth_fc/app_settings.py +++ b/src/authentic2_auth_fc/app_settings.py @@ -70,6 +70,7 @@ class AppSettings(object): 'last_name': 'family_name', 'first_name': 'given_name', 'email': 'email', + 'password': {'compute': 'random', 'if-empty': True}, }) @property -- 2.18.0