From 113388c0d03680be7913863305831857654e96f1 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:55:42 +0200 Subject: [PATCH] authentic: note that attributevalue.verified should also be exported --- authentic/export-users.py | 1 + 1 file changed, 1 insertion(+) diff --git a/authentic/export-users.py b/authentic/export-users.py index f6f618f..f1b3347 100644 --- a/authentic/export-users.py +++ b/authentic/export-users.py @@ -34,6 +34,7 @@ def to_json(user): 'attributes': {} } for av in AttributeValue.objects.with_owner(user): + # XXX: this should also export av.verified user_dict['attributes'][str(av.attribute.name)] = av.to_python() return user_dict