aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CatDap/Controller
diff options
context:
space:
mode:
authorNicolas Vigier <boklm@mageia.org>2012-07-06 16:42:13 +0000
committerNicolas Vigier <boklm@mageia.org>2013-09-22 09:12:07 +0000
commit1706718d3ca2f60984eba1ea7739a366fff93684 (patch)
tree40b12b99d607bf7a2ccc1dfdb57de5bdd7440508 /lib/CatDap/Controller
parent2c0d061e81a3096412e4596358b9b3d8707447ef (diff)
downloadidentity-1706718d3ca2f60984eba1ea7739a366fff93684.tar
identity-1706718d3ca2f60984eba1ea7739a366fff93684.tar.gz
identity-1706718d3ca2f60984eba1ea7739a366fff93684.tar.bz2
identity-1706718d3ca2f60984eba1ea7739a366fff93684.tar.xz
identity-1706718d3ca2f60984eba1ea7739a366fff93684.zip
add option to change the regex used to validate username
(cherry picked from commit ac112f8b9454b5e4ec4bac614358318ef7c3b664)
Diffstat (limited to 'lib/CatDap/Controller')
-rw-r--r--lib/CatDap/Controller/register.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/CatDap/Controller/register.pm b/lib/CatDap/Controller/register.pm
index 76614bc..89b54b4 100644
--- a/lib/CatDap/Controller/register.pm
+++ b/lib/CatDap/Controller/register.pm
@@ -40,7 +40,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};