implement bulk (un)subscribe
[mygpo.git] / mygpo / core / _design / views / episodes_by_podcast_url / map.js
blob5f0d3c8d4e9bce2b8095e879fb5ed6f17bec9647
1 function(doc)
3     if(doc.doc_type == "Episode")
4     {
5         for(n in doc.urls)
6         {
7             url = doc.urls[n];
8             emit([doc.podcast, url], null);
9         }
10     }