feat: client disable/deletion with soft-delete #69

Merged
ghost merged 2 commits from feature/client-soft-delete into main 2026-03-19 20:03:18 +00:00
Showing only changes of commit a87ecd3f52 - Show all commits
-1
View File
@@ -13,7 +13,6 @@ const createClientSchema = z.object({
notes: z.string().max(2000).optional(),
});
const updateClientSchema = createClientSchema.partial();
// List clients — defaults to active only, ?includeDisabled=true shows all
clientsRouter.get("/", async (c) => {