Skip to content

Commit

Permalink
fix: Add sensitive and hidden fields to setting schema (#1667)
Browse files Browse the repository at this point in the history
Co-authored-by: Pat Nadolny <[email protected]>
  • Loading branch information
edgarrmondragon and pnadolny13 authored Feb 16, 2024
1 parent ef21b1b commit 7e070ce
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions schemas/common/base_setting.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,16 @@
"docs": {
"type": "string",
"description": "A URL to the documentation for this plugin"
},
"hidden": {
"type": "boolean",
"description": "A hidden setting should not be user-configurable",
"default": false
},
"sensitive": {
"type": "boolean",
"description": "A sensitive setting is redacted in command output",
"default": false
}
}
}

0 comments on commit 7e070ce

Please sign in to comment.