()
| 479 | } |
| 480 | |
| 481 | getDisplayPermission () { |
| 482 | if (this.isOwner()) { |
| 483 | return |
| 484 | } |
| 485 | if (this.hasWritePermission()) { |
| 486 | return classroomUtils.getDisplayPermission('write') |
| 487 | } else if (this.hasReadPermission()) { |
| 488 | return classroomUtils.getDisplayPermission('read') |
| 489 | } |
| 490 | } |
| 491 | |
| 492 | revokeStudentLicenses () { |
| 493 | const students = new Users() |
nothing calls this directly
no test coverage detected