feat: add apikey field to hermes_services table structure and edit form

This commit is contained in:
yumoqing 2026-04-22 21:02:16 +08:00
parent f7ef379a52
commit 5b4085e6fd
2 changed files with 15 additions and 0 deletions

View File

@ -61,6 +61,14 @@
"type": "timestamp",
"nullable": "yes",
"comments": "Record last update timestamp"
},
{
"name": "apikey",
"title": "API Key",
"type": "str",
"length": 255,
"nullable": "yes",
"comments": "API key for authenticating with the Hermes service"
}
],
"indexes": [

View File

@ -40,6 +40,13 @@
"label": "Description",
"uitype": "str",
"placeholder": "Optional description"
},
{
"name": "apikey",
"label": "API Key",
"uitype": "password",
"required": false,
"placeholder": "API key for authentication (optional)"
}
],
"data_url": "/hermes-web-cli/hermes_services/?id={{query.service_id}}"