(aiChatId: string)
| 644 | } |
| 645 | |
| 646 | getMessages(aiChatId: string): AIMessage[] { |
| 647 | return this.getActivePathRows(aiChatId).map((row) => this.parseMessageRow(row)) |
| 648 | } |
| 649 | |
| 650 | deleteMessage(messageId: string): boolean { |
| 651 | const db = this.getDb() |
nothing calls this directly
no test coverage detected