()
| 20 | } |
| 21 | |
| 22 | initialize () { |
| 23 | this.on('sync', () => { |
| 24 | return Array.from(this.models).map((classroom) => |
| 25 | classroom.capitalizeLanguageName()) |
| 26 | }) |
| 27 | return super.initialize(...arguments) |
| 28 | } |
| 29 | |
| 30 | fetchMine (options) { |
| 31 | if (options == null) { options = {} } |
nothing calls this directly
no test coverage detected