chat.js 218 B

12345678910111213
  1. const Chat = require('./schemas/chat');
  2. const getByField = async (companionId, userId) => {
  3. const chat = await Chat.findOne({
  4. companionId,
  5. owner: userId,
  6. });
  7. return chat;
  8. };
  9. module.exports = {
  10. getByField,
  11. };