Ignore:
Timestamp:
12/27/12 17:46:05 (12 years ago)
Author:
hendrikvanantwerpen
Message:

Show responses with links in SurveyRun? overview.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Dev/branches/rest-dojo-ui/server/couchdb-admin/config/data/design-docs.js

    r415 r421  
    100100                }
    101101            }
     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            }
    102115        }
    103116    };
Note: See TracChangeset for help on using the changeset viewer.