diff options
Diffstat (limited to 'lib/pleroma/object_tombstone.ex')
| -rw-r--r-- | lib/pleroma/object_tombstone.ex | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/pleroma/object_tombstone.ex b/lib/pleroma/object_tombstone.ex new file mode 100644 index 0000000..8bdc8f6 --- /dev/null +++ b/lib/pleroma/object_tombstone.ex @@ -0,0 +1,8 @@ +# Pleroma: A lightweight social networking server +# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/> +# SPDX-License-Identifier: AGPL-3.0-only + +defmodule Pleroma.ObjectTombstone do + @enforce_keys [:id, :formerType, :deleted] + defstruct [:id, :formerType, :deleted, type: "Tombstone"] +end |
