()
| 337 | } |
| 338 | |
| 339 | sortMyClans () { |
| 340 | this.myClans = _.sortBy(this.myClans, clan => { |
| 341 | let left |
| 342 | const playerCount = (left = this.getAILeagueStat('codePoints', clan._id, 'playerCount')) != null ? left : 0 |
| 343 | return -playerCount |
| 344 | }) |
| 345 | return this.myClans |
| 346 | } |
| 347 | |
| 348 | handleUserOnline () { |
| 349 | return this.renderSelectors('.teacher-icon') |
no test coverage detected