diff options
author | rinpatch <rinpatch@sdf.org> | 2019-07-25 18:43:30 +0300 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2019-07-25 18:43:30 +0300 |
commit | 41e0304757c5a0d9778f7e685c9ddf481f0e15cb (patch) | |
tree | dc60d86d41153d9764cb32a9adae5fa24894c1fa /docs/api/admin_api.md | |
parent | 196cad46f35a63c18d58cd5d982bc4e1f9b0d7c3 (diff) | |
parent | d1e891062e3c6c34ca7940a476917beea2822ca2 (diff) | |
download | pleroma-41e0304757c5a0d9778f7e685c9ddf481f0e15cb.tar.gz |
Merge branch 'develop' into feature/hide-follows-remote
Diffstat (limited to 'docs/api/admin_api.md')
-rw-r--r-- | docs/api/admin_api.md | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/docs/api/admin_api.md b/docs/api/admin_api.md index c429da822..ca9303227 100644 --- a/docs/api/admin_api.md +++ b/docs/api/admin_api.md @@ -187,6 +187,19 @@ Note: Available `:permission_group` is currently moderator and admin. 404 is ret - On failure: `Not found` - On success: JSON of the user +## `/api/pleroma/admin/users/:nickname_or_id/statuses` + +### Retrive user's latest statuses + +- Method: `GET` +- Params: + - `nickname` or `id` + - *optional* `page_size`: number of statuses to return (default is `20`) + - *optional* `godmode`: `true`/`false` – allows to see private statuses +- Response: + - On failure: `Not found` + - On success: JSON array of user's latest statuses + ## `/api/pleroma/admin/relay` ### Follow a Relay @@ -564,6 +577,7 @@ Note: Available `:permission_group` is currently moderator and admin. 404 is ret ## `/api/pleroma/admin/config` ### List config settings +List config settings only works with `:pleroma => :instance => :dynamic_configuration` setting to `true`. - Method `GET` - Params: none - Response: @@ -582,6 +596,7 @@ Note: Available `:permission_group` is currently moderator and admin. 404 is ret ## `/api/pleroma/admin/config` ### Update config settings +Updating config settings only works with `:pleroma => :instance => :dynamic_configuration` setting to `true`. Module name can be passed as string, which starts with `Pleroma`, e.g. `"Pleroma.Upload"`. Atom keys and values can be passed with `:` in the beginning, e.g. `":upload"`. Tuples can be passed as `{"tuple": ["first_val", Pleroma.Module, []]}`. |