From 8d4584b8b73ef9bc4a88c3daf5b8b5f0c4d7f87e Mon Sep 17 00:00:00 2001 From: Carlos Mesquita Date: Sun, 8 Sep 2024 00:38:35 +0100 Subject: [PATCH] Forgot to str() on a uuid --- modules/batch_users/service.py | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/batch_users/service.py b/modules/batch_users/service.py index ed7c016..18155cf 100644 --- a/modules/batch_users/service.py +++ b/modules/batch_users/service.py @@ -143,6 +143,7 @@ class BatchUsers: 'passport_id', 'groupName', 'expiryDate', 'corporate', 'passwordHash', 'passwordSalt' }), + 'id': str(user.id), 'bio': "", 'focus': "academic", 'status': "active",