(context?: TaskNotesMutationContext)
| 2463 | } |
| 2464 | |
| 2465 | private async resumePomodoro(context?: TaskNotesMutationContext): Promise<PomodoroState> { |
| 2466 | await this.withMutationContext([], context, () => |
| 2467 | this.plugin.pomodoroService.resumePomodoro() |
| 2468 | ); |
| 2469 | return this.copyPomodoroState(this.plugin.pomodoroService.getState()); |
| 2470 | } |
| 2471 | |
| 2472 | private async assignPomodoroTask( |
| 2473 | path: string | null, |
no test coverage detected