diff options
author | feld <feld@feld.me> | 2019-09-18 21:13:15 +0000 |
---|---|---|
committer | feld <feld@feld.me> | 2019-09-18 21:13:15 +0000 |
commit | ab2ca3038ffb54dd74a26bde157cfe6a77c51cd9 (patch) | |
tree | 7d0f0a6b6b7b8f17224b900ca0630fbc84ff4a78 /docs/api/differences_in_mastoapi_responses.md | |
parent | 25b43656565b0044d79d7e969d98a0f8283279fc (diff) | |
parent | 450bf7a63c39c2301d5985448a867e77f1dfe3b3 (diff) | |
download | pleroma-ab2ca3038ffb54dd74a26bde157cfe6a77c51cd9.tar.gz pleroma-ab2ca3038ffb54dd74a26bde157cfe6a77c51cd9.zip |
Merge branch 'hide-follower-following-count' into 'develop'
Add a setting to hide follows/followers stats from the user profile
See merge request pleroma/pleroma!1663
Diffstat (limited to 'docs/api/differences_in_mastoapi_responses.md')
-rw-r--r-- | docs/api/differences_in_mastoapi_responses.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/api/differences_in_mastoapi_responses.md b/docs/api/differences_in_mastoapi_responses.md index 9b32baf3a..3c7f5dad7 100644 --- a/docs/api/differences_in_mastoapi_responses.md +++ b/docs/api/differences_in_mastoapi_responses.md @@ -50,6 +50,8 @@ Has these additional fields under the `pleroma` object: - `confirmation_pending`: boolean, true if a new user account is waiting on email confirmation to be activated - `hide_followers`: boolean, true when the user has follower hiding enabled - `hide_follows`: boolean, true when the user has follow hiding enabled +- `hide_followers_count`: boolean, true when the user has follower stat hiding enabled +- `hide_follows_count`: boolean, true when the user has follow stat hiding enabled - `settings_store`: A generic map of settings for frontends. Opaque to the backend. Only returned in `verify_credentials` and `update_credentials` - `chat_token`: The token needed for Pleroma chat. Only returned in `verify_credentials` - `deactivated`: boolean, true when the user is deactivated @@ -112,6 +114,8 @@ Additional parameters can be added to the JSON body/Form data: - `no_rich_text` - if true, html tags are stripped from all statuses requested from the API - `hide_followers` - if true, user's followers will be hidden - `hide_follows` - if true, user's follows will be hidden +- `hide_followers_count` - if true, user's follower count will be hidden +- `hide_follows_count` - if true, user's follow count will be hidden - `hide_favorites` - if true, user's favorites timeline will be hidden - `show_role` - if true, user's role (e.g admin, moderator) will be exposed to anyone in the API - `default_scope` - the scope returned under `privacy` key in Source subentity |