()
| 32 | } |
| 33 | |
| 34 | fetchUser () { |
| 35 | if (this.isMe()) { |
| 36 | this.user = me |
| 37 | this.onLoaded() |
| 38 | } |
| 39 | this.user = new User({ _id: this.userID }) |
| 40 | return this.supermodel.loadModel(this.user, { cache: false }) |
| 41 | } |
| 42 | |
| 43 | isMe () { |
| 44 | let needle |
no test coverage detected