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