()
| 579 | } |
| 580 | |
| 581 | promptToEdit () { |
| 582 | const { |
| 583 | classroom |
| 584 | } = this |
| 585 | const modal = new ClassroomSettingsModal({ classroom }) |
| 586 | this.openModalView(modal) |
| 587 | return this.listenToOnce(modal, 'hide', this.render) |
| 588 | } |
| 589 | |
| 590 | onClickEditStudentLink (e) { |
| 591 | if (!this.classroom.hasWritePermission({ showNoty: true })) { return } // May be viewing page as admin |
no outgoing calls
no test coverage detected