(email, id, render)
| 536 | } |
| 537 | |
| 538 | unsubscribe (email, id, render) { |
| 539 | delete this.state |
| 540 | this.stateMessage = '' |
| 541 | delete this.justSubscribed |
| 542 | this.addSubscribing(email) |
| 543 | render() |
| 544 | return me.unsubscribeRecipient(id).then(() => { |
| 545 | this.removeSubscribing(email) |
| 546 | return this.update(render) |
| 547 | }) |
| 548 | } |
| 549 | |
| 550 | update (render) { |
| 551 | delete this.state |
nothing calls this directly
no test coverage detected