diff options
author | Sadposter <hannah+pleroma@coffee-and-dreams.uk> | 2019-04-06 16:24:21 +0100 |
---|---|---|
committer | Sadposter <hannah+pleroma@coffee-and-dreams.uk> | 2019-04-06 16:24:21 +0100 |
commit | e6778003abcccdf35fe098a571023ed5f5a20323 (patch) | |
tree | 25dddb9a9bf13bd87daebcf547c82e47c6788a10 /docs/api | |
parent | c05fe4da0a9ad119891d2fc6cf82ea3beb59fec7 (diff) | |
download | pleroma-e6778003abcccdf35fe098a571023ed5f5a20323.tar.gz |
JSON need quotes!
Diffstat (limited to 'docs/api')
-rw-r--r-- | docs/api/pleroma_api.md | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/docs/api/pleroma_api.md b/docs/api/pleroma_api.md index 410f2a955..75569e092 100644 --- a/docs/api/pleroma_api.md +++ b/docs/api/pleroma_api.md @@ -127,17 +127,17 @@ See [Admin-API](Admin-API.md) * Example response: ```json { - id: "abcdefg", - following: true, - followed_by: false, - blocking: false, - muting: false, - muting_notifications: false, - subscribing: true, - requested: false, - domain_blocking: false, - showing_reblogs: true, - endorsed: false + "id": "abcdefg", + "following": true, + "followed_by": false, + "blocking": false, + "muting": false, + "muting_notifications": false, + "subscribing": true, + "requested": false, + "domain_blocking": false, + "showing_reblogs": true, + "endorsed": false } ``` @@ -151,16 +151,16 @@ See [Admin-API](Admin-API.md) * Example response: ```json { - id: "abcdefg", - following: true, - followed_by: false, - blocking: false, - muting: false, - muting_notifications: false, - subscribing: false, - requested: false, - domain_blocking: false, - showing_reblogs: true, - endorsed: false + "id": "abcdefg", + "following": true, + "followed_by": false, + "blocking": false, + "muting": false, + "muting_notifications": false, + "subscribing": false, + "requested": false, + "domain_blocking": false, + "showing_reblogs": true, + "endorsed": false } ``` |