Guest User

Untitled

a guest
Nov 23rd, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. {
  2. "_id": "_design/logs",
  3. "_rev": "5-5abe8844458d678f25076e780764c829",
  4. "language": "javascript",
  5. "views": {
  6. "all": {
  7. "map": "function (doc) {\n if (doc.type === 'log') {\n return emit(doc.name, doc);\n }\n }"
  8. },
  9. "user": {
  10. "map": "function (doc, user) {\n if (doc.type === 'log' && doc.user && doc.user === user) {\n return emit(doc.name, doc);\n }\n }"
  11. }
  12. }
  13. }
Add Comment
Please, Sign In to add comment