保存设置
POST
/api/admin/setting/save最后修改时间: 6 个月前
责任人: 未设置
请求参数
Header 参数
Authorization
string
必需
示例值:
{{alist_token}}
Body 参数application/json
array of:
key
string
键
value
string
值
help
string
帮助信息
type
string
类型
string, number, bool, select
options
string
选项
group
integer
分组
flag
integer
flag
0 = public, 1 = private, 2 = readonly, 3 = deprecated
示例
[
{
"key": "version",
"value": "v3.25.1",
"help": "",
"type": "string",
"options": "",
"group": 1,
"flag": 2
},
{
"key": "site_title",
"value": "AList",
"help": "",
"type": "string",
"options": "",
"group": 1,
"flag": 0
},
{
"key": "announcement",
"value": "",
"help": "",
"type": "text",
"options": "",
"group": 1,
"flag": 0
},
{
"key": "pagination_type",
"value": "all",
"help": "",
"type": "select",
"options": "all,pagination,load_more,auto_load_more",
"group": 1,
"flag": 0
},
{
"key": "default_page_size",
"value": "30",
"help": "",
"type": "number",
"options": "",
"group": 1,
"flag": 0
},
{
"key": "allow_indexed",
"value": "false",
"help": "",
"type": "bool",
"options": "",
"group": 1,
"flag": 0
},
{
"key": "allow_mounted",
"value": "false",
"help": "",
"type": "bool",
"options": "",
"group": 1,
"flag": 0
},
{
"key": "robots_txt",
"value": "User-agent: *\nAllow: /",
"help": "",
"type": "text",
"options": "",
"group": 1,
"flag": 0
}
]
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
状态码
message
string
信息
data
null
必需
示例
{
"code": 200,
"message": "success",
"data": null
}
最后修改时间: 6 个月前