Notifications Widget Added

This commit is contained in:
Michatec
2025-11-23 12:58:22 +01:00
parent 3332a9ca7c
commit 1c05248829
2 changed files with 6 additions and 1 deletions

View File

@@ -44,7 +44,7 @@ def notifications_api():
{
'name': User.query.get(n.user_id).username,
'data': n.message,
'timestamp': n.created_at
'created_at': n.created_at
} for n in notifications
]
)