Fix 'line is too long' warning.

This commit is contained in:
Simo Kinnunen
2014-04-15 11:30:39 +09:00
parent f5ac9d2315
commit fe092bc358

View File

@@ -8,7 +8,11 @@ module.exports = {
primaryKey: 'serial'
, indexes: {
owner: function(device) {
return r.branch(device('present'), device('owner')('email'), r.literal())
return r.branch(
device('present')
, device('owner')('email')
, r.literal()
)
}
, lastHeartbeatAt: null
}