05/29 Update shared items displayed on Grantee items

This commit is contained in:
2026-05-29 13:29:59 -04:00
parent cd2992a193
commit 450b236e26
4 changed files with 245 additions and 14 deletions
+1
View File
@@ -101,6 +101,7 @@ def list_outgoing():
d = s.to_dict()
recipient = db.session.get(User, s.recipient_id) if s.recipient_id else None
d['recipient_name'] = recipient.email if recipient else s.recipient_email
d['recipient_public_key'] = recipient.sharing_public_key if recipient else None
result.append(d)
return jsonify(result), 200