// Workspace user list for the customer-admin surface (seat-usage count on the // dashboard, the Users & groups page). Proxies GET /tenants/:slug/users with // the signed-in user's access token; platform-api enforces tenant membership. 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 base = process.env.PLATFORM_API_INTERNAL_URL ?? 'http://platform-api:3001' return $fetch(`${base}/tenants/${slug}/users`, { headers: { Authorization: `Bearer ${accessToken}` }, }) })