mirror of
https://github.com/openstf/stf
synced 2025-10-04 18:29:17 +02:00
Fix 'line is too long' warning.
This commit is contained in:
parent
f5ac9d2315
commit
fe092bc358
1 changed files with 5 additions and 1 deletions
|
@ -8,7 +8,11 @@ module.exports = {
|
||||||
primaryKey: 'serial'
|
primaryKey: 'serial'
|
||||||
, indexes: {
|
, indexes: {
|
||||||
owner: function(device) {
|
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
|
, lastHeartbeatAt: null
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue