Authentication with lowercased username
This commit is contained in:
parent
548cddb773
commit
d650542b72
@ -164,7 +164,7 @@ func (db *T) Authenticate(username, password string) (authenticated bool, userID
|
|||||||
SELECT id
|
SELECT id
|
||||||
FROM _webservice.user
|
FROM _webservice.user
|
||||||
WHERE
|
WHERE
|
||||||
username = $1 AND
|
LOWER(username) = LOWER($1) AND
|
||||||
password = _webservice.password_hash(SUBSTRING(password FROM 1 FOR 32), $2::bytea)
|
password = _webservice.password_hash(SUBSTRING(password FROM 1 FOR 32), $2::bytea)
|
||||||
`,
|
`,
|
||||||
username,
|
username,
|
||||||
|
Loading…
Reference in New Issue
Block a user