diff options
author | lain <lain@soykaf.club> | 2020-01-28 17:52:42 +0100 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-01-28 17:52:42 +0100 |
commit | cedee2793d96b0384a3041ea0a6cd1f2b1c3dd1e (patch) | |
tree | dfc1a2b2bb27d845bbde24b023287122f5d39ed7 /docs/API/pleroma_api.md | |
parent | ae78059ff433739b83aaa3ccff9245ace153146d (diff) | |
parent | e8f22451da18aeba9bcf9f9f6acf93690ccb3cba (diff) | |
download | pleroma-cedee2793d96b0384a3041ea0a6cd1f2b1c3dd1e.tar.gz |
Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into features/remote-follow-userpage-redirect
Diffstat (limited to 'docs/API/pleroma_api.md')
-rw-r--r-- | docs/API/pleroma_api.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/API/pleroma_api.md b/docs/API/pleroma_api.md index 9ca8a5af0..9f5cafe5a 100644 --- a/docs/API/pleroma_api.md +++ b/docs/API/pleroma_api.md @@ -455,7 +455,7 @@ Emoji reactions work a lot like favourites do. They make it possible to react to * Example Response: ```json [ - ["😀", [{"id" => "xyz.."...}, {"id" => "zyx..."}]], - ["☕", [{"id" => "abc..."}]] + {"emoji": "😀", "count": 2, "accounts": [{"id" => "xyz.."...}, {"id" => "zyx..."}]}, + {"emoji": "☕", "count": 1, "accounts": [{"id" => "abc..."}]} ] ``` |