comparison backend/couchdb/CouchApp/feedworm/views/preference/map.js @ 165:a5bda54309ba

add a couchapp for easy/automated setup
author Dirk Olmes <dirk@xanthippe.ping.de>
date Mon, 29 Aug 2011 04:12:01 +0200
parents
children
comparison
equal deleted inserted replaced
164:3eeda7cec39b 165:a5bda54309ba
1 function(doc)
2 {
3 if (doc.doctype == "preferences")
4 {
5 emit(doc._id, doc)
6 }
7 }