feat: delete all users posts when user is deleted

This commit is contained in:
Stevan Freeborn
2023-09-10 20:19:31 -05:00
parent 90f95e50a5
commit 1ad65d8b30
12 changed files with 1452 additions and 107 deletions
+2
View File
@@ -15,6 +15,7 @@ import type {
FunctionReference,
} from "convex/server";
import type * as http from "../http";
import type * as posts from "../posts";
import type * as users from "../users";
/**
@@ -27,6 +28,7 @@ import type * as users from "../users";
*/
declare const fullApi: ApiFromModules<{
http: typeof http;
posts: typeof posts;
users: typeof users;
}>;
export declare const api: FilterApi<