new selfhosted version

This commit is contained in:
antonio
2025-11-28 14:11:51 +01:00
parent afda29997d
commit 951860f67e
1046 changed files with 72586 additions and 574750 deletions

View File

@@ -0,0 +1,12 @@
import { OnboardingModel } from '@schema/OnboardingSchema';
export default defineEventHandler(async event => {
const ctx = await getRequestContext(event, 'flag:allowAnonRegistered');
const exists = await OnboardingModel.exists({ user_id: ctx.user_id });
return { exists: exists != null }
});

View File

@@ -0,0 +1,18 @@
import { OnboardingModel } from '@schema/OnboardingSchema';
export default defineEventHandler(async event => {
//TODO: SELFHOST - Disable onboarding
const ctx = await getRequestContext(event);
const { job, analytics } = await readBody(event);
await OnboardingModel.updateOne({
user_id: ctx.user_id,
}, { job, analytics }, { upsert: true });
return { ok: true }
});