Compare commits
2 commits
548cddb773
...
57c1cfb412
Author | SHA1 | Date | |
---|---|---|---|
57c1cfb412 | |||
d650542b72 |
2 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||||
|
|
2
pkg.go
2
pkg.go
|
@ -52,7 +52,7 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
const VERSION = "v0.2.10"
|
const VERSION = "v0.2.11"
|
||||||
|
|
||||||
type HttpHandler func(http.ResponseWriter, *http.Request)
|
type HttpHandler func(http.ResponseWriter, *http.Request)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue