Ignore:
Timestamp:
03/19/14 21:33:13 (11 years ago)
Author:
hendrikvanantwerpen
Message:
  • Allow empty subcodes.
  • Use HTTPResult exclusively on server (no more q).
  • Set readonly & disabled on ourselves as well in _ComplexValueMixin
  • Split server into several modules.
  • Check codes on the variable level, not question level.
  • We can add modules in design documents now.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Dev/trunk/src/server/config/config-couchdb.js

    r519 r525  
    1 var Q = require('q')
     1var HTTPResult = require('../util/http-result')
    22  , _ = require('underscore')
    3   , CouchDB = require('../util/couch').CouchDB
     3  , CouchDB = require('../util/couch')
    44  , util = require('util')
    55  ;
     
    6262                }
    6363            });
    64         }, Q.resolve());
     64        }, new HTTPResult(200));
    6565    });
    6666};
Note: See TracChangeset for help on using the changeset viewer.