()
| 303 | isTestStudent () { return this.isStudent() && (this.get('related') || []).some(({ relation }) => relation === 'TestStudent') } |
| 304 | |
| 305 | isCreatedByClient () { return (this.get('clientCreator') != null) } |
| 306 | |
| 307 | isTeacher (includePossibleTeachers = false) { return User.isTeacher(this.attributes, includePossibleTeachers) } |
| 308 |