chore: seminarhof customer project

This commit is contained in:
e2e
2026-06-21 21:57:34 +02:00
commit 525671e8d4
161 changed files with 18517 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
import { pikkuAuth } from '#pikku'
export const isAdminOrOwner = pikkuAuth(async (_services, session) => {
return session?.role === 'admin' || session?.role === 'owner'
})