mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-09-16 20:00:35 +00:00
Fix custom cert writes, fix schema
This commit is contained in:
7
backend/schema/components/audit-log-list.json
Normal file
7
backend/schema/components/audit-log-list.json
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"type": "array",
|
||||
"description": "Audit Log list",
|
||||
"items": {
|
||||
"$ref": "./audit-log-object.json"
|
||||
}
|
||||
}
|
@@ -1,7 +1,16 @@
|
||||
{
|
||||
"type": "object",
|
||||
"description": "Audit Log object",
|
||||
"required": ["id", "created_on", "modified_on", "user_id", "object_type", "object_id", "action", "meta"],
|
||||
"required": [
|
||||
"id",
|
||||
"created_on",
|
||||
"modified_on",
|
||||
"user_id",
|
||||
"object_type",
|
||||
"object_id",
|
||||
"action",
|
||||
"meta"
|
||||
],
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"id": {
|
||||
@@ -27,6 +36,9 @@
|
||||
},
|
||||
"meta": {
|
||||
"type": "object"
|
||||
},
|
||||
"user": {
|
||||
"$ref": "./user-object.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -31,7 +31,7 @@
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"format": "ipv4"
|
||||
"format": "^[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}$"
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
|
Reference in New Issue
Block a user