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