views.coffee 418 B

1234567891011121314
  1. exports.docs_by_site =
  2. map: (doc) ->
  3. if doc.site and doc.type
  4. emit [doc.site, doc.type, doc._id], doc.title or doc.name
  5. else if doc.type
  6. emit ['global', doc.type, doc._id], doc.title or doc.name
  7. else
  8. emit ['global', '_doc_', doc._id], doc.title or doc.name
  9. reduce: '_count'
  10. exports.docs_by_type =
  11. map: (doc) ->
  12. if doc.type
  13. emit [doc.type, doc._id], doc.title or doc.name