diff options
author | Alex Gleason <alex@alexgleason.me> | 2021-12-28 15:26:31 -0600 |
---|---|---|
committer | Alex Gleason <alex@alexgleason.me> | 2021-12-28 15:26:31 -0600 |
commit | e1146f5ed6940f76626b579468757aba4ac2b8e4 (patch) | |
tree | 2311e0a1bea3124ecd2938793daa2a8aa77af2a1 /docs/development/API | |
parent | 7f698172b964242f8f6ef3c50b91fb274b566a8d (diff) | |
parent | b5b98f9e10ebe9742aa5b00b93b6491dc1dddee3 (diff) | |
download | pleroma-e1146f5ed6940f76626b579468757aba4ac2b8e4.tar.gz |
Merge remote-tracking branch 'origin/develop' into operation-warpsneed
Diffstat (limited to 'docs/development/API')
-rw-r--r-- | docs/development/API/differences_in_mastoapi_responses.md | 6 | ||||
-rw-r--r-- | docs/development/API/pleroma_api.md | 8 |
2 files changed, 6 insertions, 8 deletions
diff --git a/docs/development/API/differences_in_mastoapi_responses.md b/docs/development/API/differences_in_mastoapi_responses.md index 6c1ecb559..518aca114 100644 --- a/docs/development/API/differences_in_mastoapi_responses.md +++ b/docs/development/API/differences_in_mastoapi_responses.md @@ -383,12 +383,6 @@ Pleroma is generally compatible with the Mastodon 2.7.2 API, but some newer feat - `GET /api/v1/endorsements`: Returns an empty array, `[]` -### Profile directory - -*Added in Mastodon 3.0.0* - -- `GET /api/v1/directory`: Returns HTTP 404 - ### Featured tags *Added in Mastodon 3.0.0* diff --git a/docs/development/API/pleroma_api.md b/docs/development/API/pleroma_api.md index 8f6422da0..0e7367a72 100644 --- a/docs/development/API/pleroma_api.md +++ b/docs/development/API/pleroma_api.md @@ -159,10 +159,12 @@ See [Admin-API](admin_api.md) "muting": false, "muting_notifications": false, "subscribing": true, + "notifying": true, "requested": false, "domain_blocking": false, "showing_reblogs": true, - "endorsed": false + "endorsed": false, + "note": "" } ``` @@ -183,10 +185,12 @@ See [Admin-API](admin_api.md) "muting": false, "muting_notifications": false, "subscribing": false, + "notifying": false, "requested": false, "domain_blocking": false, "showing_reblogs": true, - "endorsed": false + "endorsed": false, + "note": "" } ``` |