1
0
Fork 0
mirror of https://github.com/shouptech/humulus.git synced 2026-02-03 18:09:44 +00:00
humulus/tests/assets/changed/designs/recipes.json

12 lines
282 B
JSON

{
"_id": "_design/recipes",
"language": "javascript",
"views": {
"by-date": {
"map": "function (doc) {\n if (doc.$type == \"recipe\" && doc.created && doc.name) {\n emit(doc.created, doc.name)\n }\n}"
}
},
"lists": {},
"indexes": {},
"shows": {}
}