mirror of
https://github.com/Foltik/Shimapan
synced 2024-11-10 15:48:27 -05:00
17 lines
333 B
JavaScript
17 lines
333 B
JavaScript
var mongoose = require('mongoose');
|
|
|
|
var InviteSchema = mongoose.Schema({
|
|
code: {
|
|
type: String,
|
|
unique: true,
|
|
required: true
|
|
},
|
|
scope: [String],
|
|
issuer: String,
|
|
recipient: String,
|
|
issued: Date,
|
|
used: Date,
|
|
exp: Date
|
|
});
|
|
|
|
module.exports = mongoose.model('Invite', InviteSchema); |