diff options
author | Nicolas Vigier <boklm@mageia.org> | 2012-07-06 16:42:13 +0000 |
---|---|---|
committer | Nicolas Vigier <boklm@mageia.org> | 2012-07-06 16:42:13 +0000 |
commit | ac112f8b9454b5e4ec4bac614358318ef7c3b664 (patch) | |
tree | 21a234b82a849215650e39e25abea4dd5794a1af | |
parent | dc27004f85a8018facfbc0ae659f0f943bc191a6 (diff) | |
download | identity-ac112f8b9454b5e4ec4bac614358318ef7c3b664.tar identity-ac112f8b9454b5e4ec4bac614358318ef7c3b664.tar.gz identity-ac112f8b9454b5e4ec4bac614358318ef7c3b664.tar.bz2 identity-ac112f8b9454b5e4ec4bac614358318ef7c3b664.tar.xz identity-ac112f8b9454b5e4ec4bac614358318ef7c3b664.zip |
add option to change the regex used to validate username
-rw-r--r-- | catdap.yml | 1 | ||||
-rw-r--r-- | lib/CatDap/Controller/register.pm | 3 |
2 files changed, 3 insertions, 1 deletions
@@ -32,6 +32,7 @@ Model::User: start_tls: 1 register: + login_regex: ^[a-z][a-z0-9_-]*$ login_blacklist: - apache diff --git a/lib/CatDap/Controller/register.pm b/lib/CatDap/Controller/register.pm index 1aef176..2ef3fce 100644 --- a/lib/CatDap/Controller/register.pm +++ b/lib/CatDap/Controller/register.pm @@ -39,7 +39,8 @@ sub check : Local { my @errors; $c->stash(errors => []); # Check username, start with letter, followed by letters or numbers - if ($username !~ /^[a-z][a-z0-9_-]*$/) { + my $login_regex = ${$c->config}{'register'}{'login_regex'}; + if ($username !~ /$login_regex/) { push @errors, $c->loc('Invalid username'); } my $email = $c->request->params->{mail1}; |