mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-07 02:16:26 +00:00
Merge branch 'pseudo_insensitive' into 'dev'
Case insensitive search See merge request federez/re2o!390
This commit is contained in:
commit
79864180ab
1 changed files with 1 additions and 1 deletions
|
@ -289,7 +289,7 @@ def check_user_machine_and_register(nas_type, username, mac_address):
|
||||||
Renvoie le mot de passe ntlm de l'user si tout est ok
|
Renvoie le mot de passe ntlm de l'user si tout est ok
|
||||||
Utilise pour les authentifications en 802.1X"""
|
Utilise pour les authentifications en 802.1X"""
|
||||||
interface = Interface.objects.filter(mac_address=mac_address).first()
|
interface = Interface.objects.filter(mac_address=mac_address).first()
|
||||||
user = User.objects.filter(pseudo=username).first()
|
user = User.objects.filter(pseudo__iexact=username).first()
|
||||||
if not user:
|
if not user:
|
||||||
return (False, u"User inconnu", '')
|
return (False, u"User inconnu", '')
|
||||||
if not user.has_access():
|
if not user.has_access():
|
||||||
|
|
Loading…
Reference in a new issue