From 631a86deec385f83eb78c77c575f998785bd4bc5 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Wed, 27 Jun 2018 20:00:57 +0200 Subject: [PATCH] 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 bd16a0e..8788de2 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