- Timestamp:
- 03/12/14 02:27:18 (11 years ago)
- Location:
- Dev/trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk/src/client/qed-client/model/classes/responses.js
r492 r509 81 81 contentType: 'application/json', 82 82 rawBody: body 83 }).otherwise(lang.hitch(this,'_deserializeError')); 83 }).then(function(result){ 84 return result; 85 },lang.hitch(this,'_deserializeError')); 84 86 } 85 87 }); -
Dev/trunk/src/server/config/couchdb-schema.json
r508 r509 90 90 "type": "object", 91 91 "patternProperties": { 92 "^[A-Za-z0-9]+$": { }92 "^[A-Za-z0-9]+$": { "type": ["string","number"] } 93 93 }, 94 94 "additionalProperties": false
Note: See TracChangeset
for help on using the changeset viewer.