1
0
Fork 0

Merge branch 'devel' of https://github.com/arangodb/arangodb into data-modification

This commit is contained in:
Jan Steemann 2015-03-24 18:29:37 +01:00
commit d774236379
1 changed files with 0 additions and 11 deletions

View File

@ -133,17 +133,6 @@ Model.fromClient = function (attributes) {
return new this(excludeExtraAttributes(attributes, this));
};
// "Class" Properties
_.extend(Model, {
// TODO: Docs
toJSONSchema: function (id) {
'use strict';
require('console').log('Model.toJSONSchema(id) is deprecated, use Foxx.toJSONSchema(id, Model) instead');
return toJSONSchema(id, this);
}
});
// Instance Properties
_.extend(Model.prototype, {
////////////////////////////////////////////////////////////////////////////////