Add scripts to create myops-getqueryview:
[myops.git] / web / query / views / recent-posts / map.js
1 function(doc) {
2   if (doc.type == "post") {
3     emit(new Date(doc.created_at), doc);
4   }
5 };