feat: add suggestion feature

This commit is contained in:
2026-02-04 19:09:28 -08:00
parent 912a8887a5
commit 9902c5ad45
22 changed files with 2666 additions and 49 deletions
+1 -1
View File
@@ -25,6 +25,6 @@ export async function bannedGuard(
const isBanned = await userService.isUserBanned(user.id);
if (isBanned) {
return reply.code(403).send({ error: "You have been banned from commenting" });
return reply.code(403).send({ error: "You have been banned" });
}
}