diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/development/API/admin_api.md | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/docs/development/API/admin_api.md b/docs/development/API/admin_api.md index f6519830b..10510406a 100644 --- a/docs/development/API/admin_api.md +++ b/docs/development/API/admin_api.md @@ -1122,6 +1122,30 @@ Loads json generated from `config/descriptions.exs`. }] ``` +## ` GET /api/pleroma/admin/config/tabs` + +### Get JSON formatted list of ConfigDB setting routes for AdminFE +Also generated from `config/descriptions.exs`. + +- Params: none +- Response: + +```json +[ + { + "label": "ActivityPub", // Text label of the setting + "path": "activity-pub" // URL path for rendering that group of settings + }, + { + "label": "Authentication", + "path": "authentication" + }, + { + "label": "Captcha", + "path": "captcha" + } +``` + ## `GET /api/pleroma/admin/moderation_log` ### Get moderation log |