diff options
author | Maxim Filippov <colixer@gmail.com> | 2019-08-25 19:39:37 +0000 |
---|---|---|
committer | kaniini <ariadne@dereferenced.org> | 2019-08-25 19:39:37 +0000 |
commit | 37dd3867bb0439e4a2717eb780a1837196fcef00 (patch) | |
tree | 81250e2b7077ae3d36f6536f8701f14475eb94d7 /docs/api | |
parent | 503139b3431799fed3f280d990fb26c6632f2f25 (diff) | |
download | pleroma-37dd3867bb0439e4a2717eb780a1837196fcef00.tar.gz pleroma-37dd3867bb0439e4a2717eb780a1837196fcef00.zip |
Log admin/moderator actions
Diffstat (limited to 'docs/api')
-rw-r--r-- | docs/api/admin_api.md | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/docs/api/admin_api.md b/docs/api/admin_api.md index 7ccb90836..d79c342be 100644 --- a/docs/api/admin_api.md +++ b/docs/api/admin_api.md @@ -694,3 +694,27 @@ Compile time settings (need instance reboot): ] } ``` + +## `/api/pleroma/admin/moderation_log` +### Get moderation log +- Method `GET` +- Params: + - *optional* `page`: **integer** page number + - *optional* `page_size`: **integer** number of users per page (default is `50`) +- Response: + +```json +[ + { + "data": { + "actor": { + "id": 1, + "nickname": "lain" + }, + "action": "relay_follow" + }, + "time": 1502812026, // timestamp + "message": "[2017-08-15 15:47:06] @nick0 followed relay: https://example.org/relay" // log message + } +] +``` |