feat: Implement Convex authentication including sign-in/sign-up UI, Convex client provider, and backend auth functions.
This commit is contained in:
9
convex/schema.ts
Normal file
9
convex/schema.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { defineSchema, defineTable } from "convex/server";
|
||||
import { authTables } from "@convex-dev/auth/server";
|
||||
|
||||
const schema = defineSchema({
|
||||
...authTables,
|
||||
// Your other tables here
|
||||
});
|
||||
|
||||
export default schema;
|
||||
Reference in New Issue
Block a user