()
| 12 | module.exports = (ConceptCollection = (function () { |
| 13 | ConceptCollection = class ConceptCollection extends CocoCollection { |
| 14 | static initClass () { |
| 15 | this.prototype.url = '/db/concept' |
| 16 | this.prototype.model = Concept |
| 17 | } |
| 18 | } |
| 19 | ConceptCollection.initClass() |
| 20 | return ConceptCollection |