update list of CouchDB views in doc
[mygpo.git] / couchdb / _design / categories / views / by_tags / map.js
blob24756bbbb87a4e65bf5714e43db331052f0bed3c
1 function(doc)
3     if (doc.doc_type == "Category")
4     {
5         emit(doc.label, null);
6         for(i in doc.spellings)
7         {
8             emit(doc.spellings[i], null);
9         }
10     }