()
| 36 | } |
| 37 | |
| 38 | constructor () { |
| 39 | super() |
| 40 | |
| 41 | this.levelStatusMap = [] |
| 42 | this.levelPlayCountMap = [] |
| 43 | this.campaigns = campaigns |
| 44 | |
| 45 | this.sessions = this.supermodel.loadCollection(new LevelSessionsCollection(), 'your_sessions', { cache: false }, 0).model |
| 46 | this.listenToOnce(this.sessions, 'sync', this.onSessionsLoaded) |
| 47 | } |
| 48 | |
| 49 | // TODO: Make sure this is also enabled server side. |
| 50 | // Disabled due to high load on database. |
nothing calls this directly
no outgoing calls
no test coverage detected