Profile enhancements & greeting

This commit is contained in:
2025-10-06 18:54:58 -04:00
parent 49a88f6634
commit 21b480021e
5 changed files with 499 additions and 1 deletions

View File

@@ -25,6 +25,7 @@ export default defineEventHandler(async (event) => {
return {
authenticated: true,
username: user.username,
firstName: user.first_name || '',
isAdmin: user.is_admin === 1
}
})