diff options
author | Sergey Suprunenko <suprunenko.s@gmail.com> | 2019-07-10 05:16:08 +0000 |
---|---|---|
committer | kaniini <nenolod@gmail.com> | 2019-07-10 05:16:08 +0000 |
commit | 2d2b50cccaa99b551b88be36a4b33b271300d3c8 (patch) | |
tree | 11f542ebcf189ddff5656b97d3cddd8a0bcc5159 /test/fixtures/mastodon-delete-user.json | |
parent | 75be90a6d177b00c4ca1083331975805c6f9afde (diff) | |
download | pleroma-2d2b50cccaa99b551b88be36a4b33b271300d3c8.tar.gz pleroma-2d2b50cccaa99b551b88be36a4b33b271300d3c8.zip |
Send and handle "Delete" activity for deleted users
Diffstat (limited to 'test/fixtures/mastodon-delete-user.json')
-rw-r--r-- | test/fixtures/mastodon-delete-user.json | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/test/fixtures/mastodon-delete-user.json b/test/fixtures/mastodon-delete-user.json new file mode 100644 index 000000000..f19088fec --- /dev/null +++ b/test/fixtures/mastodon-delete-user.json @@ -0,0 +1,24 @@ +{ + "type": "Delete", + "object": { + "type": "Person", + "id": "http://mastodon.example.org/users/admin", + "atomUri": "http://mastodon.example.org/users/admin" + }, + "id": "http://mastodon.example.org/users/admin#delete", + "actor": "http://mastodon.example.org/users/admin", + "@context": [ + { + "toot": "http://joinmastodon.org/ns#", + "sensitive": "as:sensitive", + "ostatus": "http://ostatus.org#", + "movedTo": "as:movedTo", + "manuallyApprovesFollowers": "as:manuallyApprovesFollowers", + "inReplyToAtomUri": "ostatus:inReplyToAtomUri", + "conversation": "ostatus:conversation", + "atomUri": "ostatus:atomUri", + "Hashtag": "as:Hashtag", + "Emoji": "toot:Emoji" + } + ] +} |