Created
July 11, 2015 20:02
-
-
Save rifki/3f58be7ec36028d0a693 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"_id": "_design/get_blog_posts", | |
"language": "javascript", | |
"views": { | |
"all": { | |
"map": "function(doc) { emit(doc._id, doc); } " | |
}, | |
"by_date": { | |
"map": "function(doc) { if (doc) { emit(doc.created_at, null); } }" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment