diff options
author | Alex S <alex.strizhakov@gmail.com> | 2019-04-06 20:34:00 +0700 |
---|---|---|
committer | Alex S <alex.strizhakov@gmail.com> | 2019-04-06 20:34:00 +0700 |
commit | 7410aee886fbb38615bb595b8b7be0722761a0a4 (patch) | |
tree | 26372ac184398430a0a18f3285dba2b543632fb0 /docs/api/admin_api.md | |
parent | fa8483cb808ef4b8b907d7ec0eeb882f3f47d927 (diff) | |
parent | 3c5daa0235aaf47eeeda557fd677e3604cb7d701 (diff) | |
download | pleroma-7410aee886fbb38615bb595b8b7be0722761a0a4.tar.gz |
Merge develop to 770-add-emoji-tags
Merge conflict in test/web/mastodon_api/mastodon_api_controller_test.exs
Diffstat (limited to 'docs/api/admin_api.md')
-rw-r--r-- | docs/api/admin_api.md | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/docs/api/admin_api.md b/docs/api/admin_api.md index 53b68ffd4..86cacebb1 100644 --- a/docs/api/admin_api.md +++ b/docs/api/admin_api.md @@ -58,6 +58,26 @@ Authentication is required and the user must be an admin. - `password` - Response: User’s nickname +## `/api/pleroma/admin/user/follow` +### Make a user follow another user + +- Methods: `POST` +- Params: + - `follower`: The nickname of the follower + - `followed`: The nickname of the followed +- Response: + - "ok" + +## `/api/pleroma/admin/user/unfollow` +### Make a user unfollow another user + +- Methods: `POST` +- Params: + - `follower`: The nickname of the follower + - `followed`: The nickname of the followed +- Response: + - "ok" + ## `/api/pleroma/admin/users/:nickname/toggle_activation` ### Toggle user activation |