diff options
author | marcin mikołajczak <git@mkljczk.pl> | 2021-12-28 18:07:19 +0100 |
---|---|---|
committer | marcin mikołajczak <git@mkljczk.pl> | 2021-12-28 18:07:19 +0100 |
commit | 9032d065e6710400420320edbee9a9ca5e490eae (patch) | |
tree | d49601451ea29dcf2a79a948541ddf5790e389f5 /docs/development/API/admin_api.md | |
parent | a9b0027071e3edf4d6a899ae5772e37806b4fc7d (diff) | |
parent | de7f84deb3ebe57744630950860f8fbf64a414a2 (diff) | |
download | pleroma-9032d065e6710400420320edbee9a9ca5e490eae.tar.gz pleroma-9032d065e6710400420320edbee9a9ca5e490eae.zip |
wip
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
Diffstat (limited to 'docs/development/API/admin_api.md')
-rw-r--r-- | docs/development/API/admin_api.md | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/docs/development/API/admin_api.md b/docs/development/API/admin_api.md index 82483fae7..f14081893 100644 --- a/docs/development/API/admin_api.md +++ b/docs/development/API/admin_api.md @@ -261,6 +261,46 @@ Note: Available `:permission_group` is currently moderator and admin. 404 is ret } ``` +## `PATCH /api/v1/pleroma/admin/users/suggest` + +### Suggest a user + +Adds the user(s) to follower recommendations. + +- Params: + - `nicknames`: nicknames array +- Response: + +```json +{ + users: [ + { + // user object + } + ] +} +``` + +## `PATCH /api/v1/pleroma/admin/users/unsuggest` + +### Unsuggest a user + +Removes the user(s) from follower recommendations. + +- Params: + - `nicknames`: nicknames array +- Response: + +```json +{ + users: [ + { + // user object + } + ] +} +``` + ## `GET /api/v1/pleroma/admin/users/:nickname_or_id` ### Retrive the details of a user |