Add password as a config entry type
This commit is contained in:
parent
c3d2d5cdf6
commit
e10aa3e60e
|
@ -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',
|
||||
|
|
Loading…
Reference in New Issue