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 7231db8
Show file tree
Hide file tree
Showing 7 changed files with 3,356 additions and 406 deletions.
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ currently being supported with security updates.

| Version | Supported |
| ------- | ------------------ |
| 2.9.1 | :white_check_mark: |
| < 2.9.0 | :x: |
| 1.0.0 | :white_check_mark: |
| < 0.1.0 | :x: |

## Reporting a Vulnerability

Expand Down
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"
]
}
File renamed without changes.
Loading

0 comments on commit 7231db8

Please sign in to comment.