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_.-]+)$|,
|
pattern => qr|^([a-zA-Z0-9_.-]+)\@([a-zA-Z0-9_.-]+)$|,
|
||||||
format => q( $1\@$2 )
|
format => q( $1\@$2 )
|
||||||
},
|
},
|
||||||
|
password => {
|
||||||
|
db_type => 'string',
|
||||||
|
hint => 'password',
|
||||||
|
pattern => qr|^(.+)$|,
|
||||||
|
format => q($1)
|
||||||
|
},
|
||||||
timezone => {
|
timezone => {
|
||||||
db_type => 'string',
|
db_type => 'string',
|
||||||
hint => 'America/Toronto',
|
hint => 'America/Toronto',
|
||||||
|
|
Loading…
Reference in New Issue