feat: Implement analysis job tracking with progress timeline and enhanced data source status management.

This commit is contained in:
2026-02-03 22:43:27 +00:00
parent c47614bc66
commit 358f2a42dd
22 changed files with 2251 additions and 219 deletions

11
convex/users.ts Normal file
View File

@@ -0,0 +1,11 @@
import { query } from "./_generated/server";
import { getAuthUserId } from "@convex-dev/auth/server";
export const getCurrent = query({
args: {},
handler: async (ctx) => {
const userId = await getAuthUserId(ctx);
if (!userId) return null;
return await ctx.db.get(userId);
},
});