Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Scheduled tasks powered by Convex.
packages/backend/convex/crons.ts
import { cronJobs } from "convex/server"; import { internal } from "./_generated/api"; const crons = cronJobs(); crons.interval("clean up expired sessions", { hours: 24 }, internal.auth.cleanup, {}); export default crons;
Was this page helpful?