@dhyasama/totem-models 1.25.0 → 1.25.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/Person.js CHANGED
@@ -141,7 +141,10 @@ module.exports = function(mongoose, config) {
141
141
  },
142
142
  notes: [ { type: Schema.ObjectId, ref: 'Note' } ]
143
143
  }
144
- ]
144
+ ],
145
+
146
+ // used for hiding non-people from the views (e.g. conference rooms that were created as people)
147
+ doNotDisplay: { type: Boolean, default: false }
145
148
 
146
149
  });
147
150
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dhyasama/totem-models",
3
- "version": "1.25.0",
3
+ "version": "1.25.2",
4
4
  "author": "Jason Reynolds",
5
5
  "license": "UNLICENSED",
6
6
  "description": "Models for Totem platform",
package/.npmignore DELETED
@@ -1,14 +0,0 @@
1
- lib-cov
2
- *.seed
3
- *.log
4
- *.csv
5
- *.dat
6
- *.out
7
- *.pid
8
- *.gz
9
-
10
- npm-debug.log
11
- node_modules
12
-
13
- .DS_Store
14
- .idea