From c4d2d73540321e4b4d737254bedc740bb24f4bdd Mon Sep 17 00:00:00 2001 From: Akhmad Fathonih Date: Wed, 6 Dec 2017 13:10:12 +0900 Subject: [PATCH] es-lint fixes for comma-style --- lib/units/api/controllers/user.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/units/api/controllers/user.js b/lib/units/api/controllers/user.js index b1b3a344..76522448 100644 --- a/lib/units/api/controllers/user.js +++ b/lib/units/api/controllers/user.js @@ -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' }) }) }