aboutsummaryrefslogtreecommitdiffstats
path: root/models.js
blob: 343d1f6306f3c8b2ff0167077dcc581fcf737f76 (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,
  };
}