(err, user)
| 340 | callback(null, false); |
| 341 | |
| 342 | function processRelatedUser(err, user) { |
| 343 | if (err || !user) return callback(err, false); |
| 344 | |
| 345 | debug('User found: %j', user.id); |
| 346 | callback(null, matches(user.id, userId)); |
| 347 | } |
| 348 | } |
| 349 | |
| 350 | function checkOwnership(inst) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…