crm-api-template-generator/backend/utils/loadCRM.js

10 lines
217 B
JavaScript
Raw Permalink Normal View History

2023-11-29 20:05:48 +00:00
const CRM = require('../models/CRM')
async function loadCRM(companyId) {
const crm = await CRM.find({ companyId, enabled: true, testing: false }).select('crm').lean()
return crm
}
module.exports = loadCRM