1 2 3 4 5 6 7 8
module.exports = db => { const endpoints = db.get('endpoints'); endpoints.createIndex({name: 1}, {unique: true}); return { endpoints }; };