()
| 11 | module.exports = (MandateModel = (function () { |
| 12 | MandateModel = class MandateModel extends CocoModel { |
| 13 | static initClass () { |
| 14 | this.className = 'Mandate' |
| 15 | this.schema = require('schemas/models/mandate.schema') |
| 16 | this.prototype.urlRoot = '/db/mandate' |
| 17 | } |
| 18 | } |
| 19 | MandateModel.initClass() |
| 20 | return MandateModel |