eHealthAfrica/direct-delivery-dashboard

View on GitHub
couchdb/app/deliveries/_design/allocations/views/all-v1/map.js

Summary

Maintainability
A
0 mins
Test Coverage
function (doc) {
  if(doc.doc_type ==='assumptions' || doc.doc_type === 'allocation_template'){
    emit(doc._id, null)
  }
}