move "userdata" views into own database
[mygpo.git] / couchdb / userdata / _design / podcast_states / views / by_podcast / map.js
bloba0fbc20ae2b6d9efebb19e79313fc5b8462bbdf0
1 function(doc)
3     if(doc.doc_type == "PodcastUserState")
4     {
5         emit([doc.podcast, doc.user], null);
6     }