[Toplist] rewrite to get podcasts from PostgreSQL
[mygpo.git] / couchdb / general / _design / podcasts / views / subscriber_data / map.js
blob3259a04611c9ce8c3ebdc8dc790af368e96ddfeb
1 function(doc)
3     if(doc.doc_type == "PodcastSubscriberData")
4     {
5         emit(doc.podcast, null);
6     }