(e)
| 548 | } |
| 549 | |
| 550 | onClickEditMandate (e) { |
| 551 | if (this.mandate == null) { this.mandate = this.supermodel.loadModel(new Mandate()).model } |
| 552 | if (this.mandate.loaded) { |
| 553 | return this.editMandate(this.mandate) |
| 554 | } else { |
| 555 | return this.listenTo(this.mandate, 'sync', this.editMandate) |
| 556 | } |
| 557 | } |
| 558 | |
| 559 | onClickMaintenanceMode (e) { |
| 560 | if (me.isAdmin()) { return (typeof this.openModalView === 'function' ? this.openModalView(new MaintenanceModal()) : undefined) } |
nothing calls this directly
no test coverage detected