UNPKG

@lobehub/chat

Version:

Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.

15 lines (11 loc) 285 B
import { trpc } from '../init'; export const oidcAuth = trpc.middleware(async (opts) => { const { ctx, next } = opts; // 检查 OIDC 认证 if (ctx.oidcAuth) { return next({ ctx: { oidcAuth: ctx.oidcAuth, userId: ctx.oidcAuth.sub }, }); } return next(); });