(threadInfo: ThreadInfo, clearChatRoutes: boolean)
| 658 | } |
| 659 | |
| 660 | navigateToThread(threadInfo: ThreadInfo, clearChatRoutes: boolean) { |
| 661 | if (clearChatRoutes) { |
| 662 | this.props.navigation.dispatch({ |
| 663 | type: replaceWithThreadActionType, |
| 664 | payload: { threadInfo }, |
| 665 | }); |
| 666 | } else { |
| 667 | this.props.navigateToThread({ threadInfo }); |
| 668 | } |
| 669 | } |
| 670 | |
| 671 | onPressNotificationForThread(threadID: string, clearChatRoutes: boolean) { |
| 672 | const threadInfo = this.props.threadInfos[threadID]; |
no outgoing calls
no test coverage detected