- Timestamp:
- 12/27/12 17:46:05 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/branches/rest-dojo-ui/server/couchdb-admin/config/data/design-docs.js
r415 r421 100 100 } 101 101 } 102 }, 103 "qed/_design/responses": { 104 __configAction: "replace", 105 _id: "_design/responses", 106 language: "javascript", 107 views: { 108 by_surveyrun: { 109 map: function(doc){ 110 if ( doc.type !== 'Response' ) { return; } 111 emit(doc.surveyRunId, doc); 112 } 113 } 114 } 102 115 } 103 116 };
Note: See TracChangeset
for help on using the changeset viewer.