eHealthAfrica/direct-delivery-dashboard

View on GitHub
couchdb/app/deliveries/_design/drivers/views/signup-email/map.js

Summary

Maintainability
A
0 mins
Test Coverage
function(doc) {
  if (doc.type === 'signup-email') {
    emit(doc._id);
  }
}