1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-05 10:39:25 +02:00

es-lint fixes for comma-style

This commit is contained in:
Akhmad Fathonih 2017-12-06 13:10:12 +09:00
parent 7e98e4f503
commit c4d2d73540

View file

@ -414,9 +414,9 @@ function addAdbPublicKey(req, res) {
return {
key: {
title: data.title || key.comment
, fingerprint: key.fingerprint
, fingerprint: key.fingerprint
}
, users: users
, users: users
}
})
})
@ -450,7 +450,7 @@ function addAdbPublicKey(req, res) {
log.error('Failed to insert new adb key fingerprint: ', err.stack)
return res.status(500).json({
success: false
, message: 'Unable to insert new adb key fingerprint to database'
, message: 'Unable to insert new adb key fingerprint to database'
})
})
}