aboutsummaryrefslogtreecommitdiffstats
path: root/models.js
blob: cf5137d7e087a1b778ad46b86e5b541dc3a3c54e (plain)
1
2
3
4
5
6
7
8
module.exports = db => {
  const endpoints = db.get('endpoints');
  endpoints.createIndex({name: 1}, {unique: true});

  return {
    endpoints
  };
};