feat(server): person delete (#19511)

feat(api): person delete
This commit is contained in:
Jason Rasmussen 2025-06-25 11:12:36 -04:00 committed by GitHub
parent 5b0575b956
commit eca9b56847
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 380 additions and 60 deletions

View file

@ -328,3 +328,12 @@ set
"deletedAt" = $1
where
"asset_faces"."id" = $2
-- PersonRepository.getForPeopleDelete
select
"id",
"thumbnailPath"
from
"person"
where
"id" in ($1)