| 4 | const feedbackCache = new RedisCache("chat:feedback", 0); |
| 5 | |
| 6 | export interface ChatFeedback { |
| 7 | type: "positive" | "negative" | "other"; |
| 8 | comment?: string; |
| 9 | createdAt: string; |
| 10 | userId: string; |
| 11 | teamId: string; |
| 12 | chatId: string; |
| 13 | messageId: string; |
| 14 | } |
| 15 | |
| 16 | export const chatFeedbackCache = { |
| 17 | set: ( |
nothing calls this directly
no outgoing calls
no test coverage detected