Bug fix
Query updated to map uuid to captcha token Signed-off-by: Rahul Rudragoudar <rr83019@gmail.com>
This commit is contained in:
parent
c45c9f0b99
commit
67372f29b6
|
@ -29,7 +29,7 @@ class Captcha(throttle: Int) {
|
|||
val mapPstmt: PreparedStatement = con.prepareStatement("INSERT INTO mapId(uuid, token) VALUES (?, ?)")
|
||||
val selectPstmt: PreparedStatement = con.prepareStatement("SELECT secret, provider FROM challenge WHERE token = ?")
|
||||
val imagePstmt: PreparedStatement = con.prepareStatement("SELECT image FROM challenge c, mapId m WHERE c.token=m.token AND m.uuid = ?")
|
||||
val updatePstmt: PreparedStatement = con.prepareStatement("UPDATE challenge SET solved = True WHERE token = ?")
|
||||
val updatePstmt: PreparedStatement = con.prepareStatement("UPDATE challenge c, mapId m SET c.solved = True WHERE c.token = m.token AND m.uuid = ?")
|
||||
val userPstmt: PreparedStatement = con.prepareStatement("INSERT INTO users(email, hash) VALUES (?,?)")
|
||||
|
||||
val filters = Map("FilterChallenge" -> new FilterChallenge,
|
||||
|
|
Loading…
Reference in New Issue