({ ...opts }, options = {})
| 5 | * @async |
| 6 | */ |
| 7 | export const createNewChatMessage = ({ ...opts }, options = {}) => |
| 8 | fetchJson('/db/chat_message', _.assign({}, options, { |
| 9 | method: 'POST', |
| 10 | json: { ...opts }, |
| 11 | })) |
| 12 | |
| 13 | export const getChatMessages = () => fetchJson('/db/chat_message') |
nothing calls this directly
no outgoing calls
no test coverage detected