Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
donavanbecker committed Jan 10, 2024
1 parent a39fa2f commit a20c69c
Show file tree
Hide file tree
Showing 3 changed files with 250 additions and 162 deletions.
49 changes: 48 additions & 1 deletion config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,57 @@
"type": "string",
"title": "Name",
"default": "Meater"
},
"email": {
"type": "string",
"title": "email",
"placeholder": "[email protected]",
"format": "email"
},
"password": {
"type": "string",
"title": "Password",
"x-schema-form": {
"type": "password"
}
},
"logging": {
"title": "Logging Setting",
"type": "string",
"required": true,
"default": "",
"oneOf": [
{
"title": "Default Logging",
"enum": [
""
]
},
{
"title": "Standard Logging",
"enum": [
"standard"
]
},
{
"title": "No Logging",
"enum": [
"none"
]
},
{
"title": "Debug Logging",
"enum": [
"debug"
]
}
]
}
}
},
"layout": [
"name"
"email",
"password",
"logging"
]
}
Loading

0 comments on commit a20c69c

Please sign in to comment.