Soft delete video comments instead of detroy

This commit is contained in:
Julien Maulny 2019-11-15 19:05:08 +01:00 committed by Chocobozzz
parent 69c7f7525d
commit 69222afac8
16 changed files with 237 additions and 79 deletions

View file

@ -89,3 +89,14 @@ export interface ActivityPubAttributedTo {
type: 'Group' | 'Person'
id: string
}
export interface ActivityTombstoneObject {
'@context'?: any
id: string
type: 'Tombstone'
name?: string
formerType?: string
published: string
updated: string
deleted: string
}