Browse Source

Document the admin API endpoints for controlling follow/unfollow

tags/v1.1.4
Mark Felder 5 years ago
parent
commit
da64a5aece
1 changed files with 20 additions and 0 deletions
  1. +20
    -0
      docs/api/admin_api.md

+ 20
- 0
docs/api/admin_api.md View File

@@ -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


Loading…
Cancel
Save