()
| 746 | } |
| 747 | |
| 748 | public async startWatchingMessage() { |
| 749 | return utils |
| 750 | .flashConfirm(api.storage.lang(`syncPage_flashConfirm_start_${this.getType()}`), 'add') |
| 751 | .then(res => { |
| 752 | if (res) { |
| 753 | this.setStatus(definitions.status.Watching); |
| 754 | this.setStartDate(returnYYYYMMDD()); |
| 755 | } |
| 756 | return res; |
| 757 | }); |
| 758 | } |
| 759 | |
| 760 | public async finishWatchingMessage(): Promise<boolean> { |
| 761 | const currentScore = this.getScoreCheckboxValue(); |
nothing calls this directly
no test coverage detected