Add password as a config entry type

pull/3585/head
Isaac Connor 2021-12-29 10:04:43 -05:00
parent b23842021c
commit 67f765bc82
1 changed files with 6 additions and 0 deletions

View File

@ -162,6 +162,12 @@ our %types = (
pattern => qr|^([a-zA-Z0-9_.-]+)\@([a-zA-Z0-9_.-]+)$|,
format => q( $1\@$2 )
},
password => {
db_type => 'string',
hint => 'password',
pattern => qr|^(.+)$|,
format => q($1)
},
timezone => {
db_type => 'string',
hint => 'America/Toronto',