Revert Activity tombstones, add ObjectTombstone struct

This commit is contained in:
Maxim Filippov 2018-12-25 03:00:06 +03:00
commit f75f707f6c
9 changed files with 43 additions and 62 deletions

View file

@ -0,0 +1,4 @@
defmodule Pleroma.ObjectTombstone do
@enforce_keys [:id, :formerType, :deleted]
defstruct [:id, :formerType, :deleted, type: "Tombstone"]
end