// Create a workspace member. Proxies POST /tenants/:slug/users; platform-api // provisions the user across Authentik (SSO), Stalwart (mailbox on the default // domain) and OCIS, then returns the email + one-time temp password. import { getUserSession } from 'nuxt-oidc-auth/runtime/server/utils/session.js' export default defineEventHandler(async (event) => { const session = await getUserSession(event).catch(() => null) const accessToken = (session as { accessToken?: string } | null)?.accessToken if (!accessToken) { throw createError({ statusCode: 401, statusMessage: 'Not signed in' }) } const slug = getRouterParam(event, 'slug') const body = await readBody(event) const base = process.env.PLATFORM_API_INTERNAL_URL ?? 'http://platform-api:3001' return $fetch(`${base}/tenants/${slug}/users`, { method: 'POST', headers: { Authorization: `Bearer ${accessToken}` }, body, }) })