diff options
author | tusooa <tusooa@kazv.moe> | 2023-07-12 11:09:10 -0400 |
---|---|---|
committer | tusooa <tusooa@kazv.moe> | 2023-09-13 19:19:42 -0400 |
commit | e9cd004ba1b904d92b1c07446bbf03dc070cce6a (patch) | |
tree | 5c41183b80a4a8af1de73ce9cd7b6dd95d4d290b /test/fixtures | |
parent | 163e5637335f9454688d3cc83530f82fc640a5b9 (diff) | |
download | pleroma-e9cd004ba1b904d92b1c07446bbf03dc070cce6a.tar.gz pleroma-e9cd004ba1b904d92b1c07446bbf03dc070cce6a.zip |
Parse object link as quoteUrl
Diffstat (limited to 'test/fixtures')
-rw-r--r-- | test/fixtures/quote_post/fep-e232-tag-example.json | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/fixtures/quote_post/fep-e232-tag-example.json b/test/fixtures/quote_post/fep-e232-tag-example.json new file mode 100644 index 000000000..23c7fb5ac --- /dev/null +++ b/test/fixtures/quote_post/fep-e232-tag-example.json @@ -0,0 +1,17 @@ +{ + "@context": "https://www.w3.org/ns/activitystreams", + "type": "Note", + "content": "This is a quote:<br>RE: https://server.example/objects/123", + "tag": [ + { + "type": "Link", + "mediaType": "application/ld+json; profile=\"https://www.w3.org/ns/activitystreams\"", + "href": "https://server.example/objects/123", + "name": "RE: https://server.example/objects/123" + } + ], + "id": "https://server.example/objects/1", + "to": "https://server.example/users/1", + "attributedTo": "https://server.example/users/1", + "actor": "https://server.example/users/1" +} |