implement bulk (un)subscribe
[mygpo.git] / mygpo / share / _design / views / lists_by_user_slug / map.js
blob0049a139e3dfe50d0209234b8e8da7b2a588082d
1 function(doc)
3     if(doc.doc_type == "PodcastList")
4     {
5         emit([doc.user, doc.slug], null);
6     }