Development

This commit is contained in:
Matthew Grotke 2026-05-31 00:22:39 -04:00
parent fcdaf09477
commit f152d82386
11 changed files with 219 additions and 66 deletions

View file

@ -54,12 +54,12 @@
{
"col": "host",
"input_type": "text",
"validate": "domainname"
"validate": "VALIDATION_DOMAIN_NAME"
},
{
"col": "ip",
"input_type": "text",
"validate": "ipv4"
"validate": "VALIDATION_IPV4_FORMAT"
},
{
"col": "enabled",
@ -100,7 +100,7 @@
"label": "Hostname",
"name": "host",
"input_type": "text",
"validate": "domainname",
"validate": "VALIDATION_DOMAIN_NAME",
"placeholder": "e.g. server.home.local"
},
{
@ -108,7 +108,7 @@
"label": "Resolves To",
"name": "ip",
"input_type": "text",
"validate": "ipv4",
"validate": "VALIDATION_IPV4_FORMAT",
"placeholder": "e.g. 192.168.1.100"
},
{