added endpoint for getting postTags and fixed follow bug

This commit is contained in:
Kai Ritthaler 2025-06-27 09:57:08 +02:00 committed by mrProm3theus
parent f035635df2
commit b868bdb599
8 changed files with 92 additions and 14 deletions

View file

@ -0,0 +1,4 @@
import { z } from "zod";
export const updateBioSchema = z.object({
bio: z.string(),
});