refactor: rename recipients route to people, update all frontend references

This commit is contained in:
2026-06-16 11:26:21 +02:00
parent d67f31cf54
commit ecc3cf1b55
37 changed files with 553 additions and 194 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
import type { Prisma, Person } from "@/generated/prisma/client"
import type { Person, Prisma } from "@/generated/prisma/client"
import { paginate } from "@/lib/paginate"
import prisma from "@/lib/prisma"
@@ -68,4 +68,4 @@ export const PersonService = {
): Promise<Person> => {
return db.person.update({ where: { id }, data })
},
}
}