mirror of
https://github.com/github/codeql.git
synced 2026-04-26 01:05:15 +02:00
JS: Fix a comment
Apparently this comment used to say 'NOT OK' but clearly 'OK' was meant
This commit is contained in:
@@ -22,7 +22,7 @@ app.post("/login", (req, res) => {
|
||||
});
|
||||
|
||||
app.get("/login2", (req, res) => {
|
||||
const username = req.param('username'); // $ Alert - usernames are fine
|
||||
const username = req.param('username'); // OK - usernames are fine
|
||||
const password = req.param('password'); // $ Alert - password read
|
||||
checkUser(username, password, (result) => {
|
||||
res.send(result);
|
||||
|
||||
Reference in New Issue
Block a user