From df2bd5aebbbb842f362fb8b380f0e35ea2499359 Mon Sep 17 00:00:00 2001 From: Toby Kohlhagen Date: Wed, 1 Oct 2025 17:07:29 +1000 Subject: [PATCH] notes now fully implemented! --- src/routes/admin.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/routes/admin.ts b/src/routes/admin.ts index f60938a..d089f5f 100644 --- a/src/routes/admin.ts +++ b/src/routes/admin.ts @@ -106,6 +106,7 @@ export default function (app: App) { notes: notes.map(note => ({ id: note.id, author: { + role: user.role, id: note.user.id, name: note.user.name },