Skip to content
Snippets Groups Projects
Commit 553f7046 authored by ichuang's avatar ichuang
Browse files

suggested username for ssl auth is conjoined name with no spaces

parent 0347eb49
No related merge requests found
......@@ -150,7 +150,7 @@ def edXauth_signup(request, eamap=None):
context = {'has_extauth_info': True,
'show_signup_immediately' : True,
'extauth_email': eamap.external_email,
'extauth_username' : eamap.external_name.split(' ')[0],
'extauth_username' : eamap.external_name.replace(' ',''), # default - conjoin name, no spaces
'extauth_name': eamap.external_name,
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment