From 9e867f63b38592c295870641020d823131902b53 Mon Sep 17 00:00:00 2001 From: Ritchie Martori Date: Fri, 19 Apr 2013 09:51:06 -0700 Subject: [PATCH] Add model options --- node_modules/model/lib/model.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/node_modules/model/lib/model.js b/node_modules/model/lib/model.js index 2d7af05b..1bd909a5 100644 --- a/node_modules/model/lib/model.js +++ b/node_modules/model/lib/model.js @@ -55,6 +55,15 @@ Model.dependencies = { 'data-source': 'data-source' }; +/** + * Options. + */ + +Model.options = { + 'name': {type: 'string'}, + 'properties': {type: 'array'} +} + /** * Build a jugglingdb compatibile schema definition from property array. */