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