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