update list of CouchDB views in doc
[mygpo.git] / couchdb / _design / podcasts / views / podcasts_groups / map.js
blobf0be538aa9b4664b4b97fdf97d55098a71b560b9
1 function(doc)
3     if (doc.doc_type == "Podcast" || doc.doc_type == "PodcastGroup")
4     {
5         emit(doc._id, null);
6     }