2017-10-11 12:55:46 -04:00
|
|
|
var mongoose = require('mongoose');
|
|
|
|
|
|
|
|
var InviteSchema = mongoose.Schema({
|
|
|
|
code: {
|
|
|
|
type: String,
|
|
|
|
unique: true,
|
|
|
|
required: true
|
|
|
|
},
|
2017-10-11 20:26:07 -04:00
|
|
|
scope: [String],
|
2017-10-11 12:55:46 -04:00
|
|
|
issuer: String,
|
|
|
|
recipient: String,
|
|
|
|
issued: Date,
|
|
|
|
used: Date,
|
|
|
|
exp: Date
|
|
|
|
});
|
|
|
|
|
2018-07-25 01:45:05 -04:00
|
|
|
/*InviteSchema.methods.use = function(canonicalname, cb) {
|
2018-01-15 15:29:32 -05:00
|
|
|
return this.model('Invite').updateOne({code: this.code}, {recipient: canonicalname, used: Date.now()}, cb);
|
2018-07-25 01:45:05 -04:00
|
|
|
};*/
|
2018-01-15 15:29:32 -05:00
|
|
|
|
2017-10-11 12:55:46 -04:00
|
|
|
module.exports = mongoose.model('Invite', InviteSchema);
|