mirror of
https://github.com/shouptech/humulus.git
synced 2026-02-03 13:49:41 +00:00
12 lines
282 B
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": {}
|
|
}
|