mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 15:58:38 +01:00
18 lines
601 B
TypeScript
18 lines
601 B
TypeScript
import { getUserProjectFromId } from "~/server/LIVE_DEMO_DATA";
|
|
import { SupabaseIntegrationModel } from '@schema/integrations/SupabaseIntegrationSchema';
|
|
|
|
export default defineEventHandler(async event => {
|
|
|
|
const project_id = getHeader(event, 'x-pid');
|
|
if (!project_id) return;
|
|
|
|
const user = getRequestUser(event);
|
|
const project = await getUserProjectFromId(project_id, user);
|
|
if (!project) return;
|
|
|
|
const integration_id = getHeader(event, 'x-integration');
|
|
|
|
const integration = await SupabaseIntegrationModel.findOne({ _id: integration_id });
|
|
return integration;
|
|
|
|
}); |