about summary refs log tree commit diff
path: root/gn_auth/auth/authorisation/users/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'gn_auth/auth/authorisation/users/views.py')
-rw-r--r--gn_auth/auth/authorisation/users/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gn_auth/auth/authorisation/users/views.py b/gn_auth/auth/authorisation/users/views.py
index f9353eb..7a32292 100644
--- a/gn_auth/auth/authorisation/users/views.py
+++ b/gn_auth/auth/authorisation/users/views.py
@@ -144,7 +144,7 @@ def user_resources() -> Response:
         db_uri = current_app.config["AUTH_DB"]
         with db.connection(db_uri) as conn:
             return jsonify([
-                dictify(resource) for resource in
+                asdict(resource) for resource in
                 _user_resources(conn, the_token.user)])
 
 @users.route("group/join-request", methods=["GET"])