1
0
mirror of https://github.com/Foltik/Shimapan synced 2024-09-21 11:11:22 -04:00
shimapan/app/models/Invite.js

45 lines
796 B
JavaScript
Raw Normal View History

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