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