admin can soft delete listings

This commit is contained in:
jackiettran
2025-11-20 17:14:40 -05:00
parent 88c831419c
commit b2f18d77f6
11 changed files with 773 additions and 22 deletions

View File

@@ -109,6 +109,11 @@ export interface Item {
};
ownerId: string;
owner?: User;
isDeleted?: boolean;
deletedBy?: string;
deletedAt?: string;
deletionReason?: string;
deleter?: User;
createdAt: string;
updatedAt: string;
}