aboutsummaryrefslogtreecommitdiff
path: root/docs/api/admin_api.md
diff options
context:
space:
mode:
authorRoman Chvanikov <chvanikoff@pm.me>2019-07-24 16:37:52 +0300
committerRoman Chvanikov <chvanikoff@pm.me>2019-07-24 16:37:52 +0300
commitd2da3d30f3349946500423bab53e0c1221ab7b9b (patch)
tree338d2e3b0412a9be89a462173e367495c5e9ad40 /docs/api/admin_api.md
parentafc7708dbe00a70be616f00f01b22b0d01b9b61b (diff)
parent53fad36b57b61b28db595e445cd01fd6044dab6b (diff)
downloadpleroma-d2da3d30f3349946500423bab53e0c1221ab7b9b.tar.gz
Merge branch 'develop' into feature/digest-email
Diffstat (limited to 'docs/api/admin_api.md')
-rw-r--r--docs/api/admin_api.md15
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, []]}`.