()
| 14 | module.exports = (ProductModel = (function () { |
| 15 | ProductModel = class ProductModel extends CocoModel { |
| 16 | static initClass () { |
| 17 | this.className = 'Product' |
| 18 | this.schema = require('schemas/models/product.schema') |
| 19 | this.prototype.urlRoot = '/db/products' |
| 20 | } |
| 21 | |
| 22 | isRegionalSubscription (name) { return utils.isRegionalSubscription(name != null ? name : this.get('name')) } |
| 23 |