feat: add ability to follow and unfollow a user on their profile page

This commit is contained in:
Stevan Freeborn
2023-09-15 17:02:20 -05:00
parent bc86873d89
commit 2a1b46f06d
6 changed files with 221 additions and 14 deletions
+2
View File
@@ -14,6 +14,7 @@ import type {
FilterApi,
FunctionReference,
} from "convex/server";
import type * as follows from "../follows";
import type * as http from "../http";
import type * as likes from "../likes";
import type * as posts from "../posts";
@@ -28,6 +29,7 @@ import type * as users from "../users";
* ```
*/
declare const fullApi: ApiFromModules<{
follows: typeof follows;
http: typeof http;
likes: typeof likes;
posts: typeof posts;