summaryrefslogtreecommitdiff
path: root/test/fixtures
diff options
context:
space:
mode:
authorkaniini <nenolod@gmail.com>2019-07-10 05:16:08 +0000
committerkaniini <nenolod@gmail.com>2019-07-10 05:16:08 +0000
commitb00620b378fea818bcbde49b70548a574b706796 (patch)
tree11f542ebcf189ddff5656b97d3cddd8a0bcc5159 /test/fixtures
parent75be90a6d177b00c4ca1083331975805c6f9afde (diff)
parent2d2b50cccaa99b551b88be36a4b33b271300d3c8 (diff)
downloadpleroma-b00620b378fea818bcbde49b70548a574b706796.tar.gz
pleroma-b00620b378fea818bcbde49b70548a574b706796.zip
Merge branch 'feature/send-delete-user-activity' into 'develop'
Send and handle "Delete" activity for deleted users Closes #1071 and #1059 See merge request pleroma/pleroma!1384
Diffstat (limited to 'test/fixtures')
-rw-r--r--test/fixtures/mastodon-delete-user.json24
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"
+ }
+ ]
+}