()
| 177 | isIndividualUser () { return !this.isStudent() && !User.isTeacher(this.attributes) } |
| 178 | |
| 179 | isNewDashboardActive () { |
| 180 | const features = { |
| 181 | isNewDashboardActive: true, |
| 182 | ...(this.get('features') || {}), |
| 183 | } |
| 184 | return features.isNewDashboardActive |
| 185 | } |
| 186 | |
| 187 | isInternal () { |
| 188 | const email = this.get('email') |
no test coverage detected