// Register a new SSO app (Dezky as IdP). Proxies POST /tenants/:slug/sso-apps // with { name, redirectUris }; platform-api creates the Authentik provider + // application and returns the client credentials (secret shown once). 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}/sso-apps`, { method: 'POST', headers: { Authorization: `Bearer ${accessToken}` }, body, }) })