Blame view

app/models/MembreModl.js 326 Bytes
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
1
2
  var mongoose = require('mongoose');
  
4932caf3   Geoffrey PREUD'HOMME   Nettoyage et rebr...
3
4
  module.exports = mongoose.model('Membre', {
      login: { // On récupèrera le nom via les passwd
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
5
          type: String,
8ae24f57   Geoffrey PREUD'HOMME   Liste des membres
6
7
          default: 'login'
      },
8ae24f57   Geoffrey PREUD'HOMME   Liste des membres
8
9
10
      role: {
          type: String,
          default: 'Membre'
278868c0   Geoffrey PREUD'HOMME   Refactorisation d...
11
12
13
14
      },
      hidden: {
          type: Boolean,
          default: false
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
15
      }
2f593328   Geoffrey PREUD'HOMME   Linting
16
  });