Commit 7f16213d authored by Rosanny Sihombing's avatar Rosanny Sihombing
Browse files

delete unused codes

parent 0b5fb9db
This commit is part of merge request !73. Comments created here will be created in the context of that merge request.
Showing with 0 additions and 20 deletions
+0 -20
// ==== USER ACOOUNT API ====
var dbconn = require('./dbconn')
module.exports = function (app) {
//console.log(dbconn);
//var con = dbconn.connection
app.get('/api/v1/profile', function (req, res) {
if (req.isAuthenticated()) {
// read data based on email
dbconn.user.query('SELECT * FROM user WHERE email="'+req.user.email+'"', function (err, rows, fields) {
if (err) throw err
res.send(rows[0])
})
} else {
res.send('authentication required');
}
});
}
\ No newline at end of file
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment