From 8987d3555b81ce00e4358ee1f93afb5eec3b49ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Tue, 15 Aug 2017 11:56:52 +0200 Subject: [PATCH] authentic: export email_verified attribute --- authentic/export-users.py | 1 + 1 file changed, 1 insertion(+) diff --git a/authentic/export-users.py b/authentic/export-users.py index f1b3347..4b523b6 100644 --- a/authentic/export-users.py +++ b/authentic/export-users.py @@ -30,6 +30,7 @@ def to_json(user): 'last_name': user.last_name, 'is_superuser': user.is_superuser, 'password': user.password, + 'email_verified': user.email_verified, 'roles': [role_to_json(role) for role in user.roles.all()], 'attributes': {} }