overleaf/services/web/app/coffee/models/TeamInvite.coffee
2018-05-31 16:15:47 +01:00

15 lines
465 B
CoffeeScript

mongoose = require 'mongoose'
Settings = require 'settings-sharelatex'
Schema = mongoose.Schema
ObjectId = Schema.ObjectId
TeamInviteSchema = new Schema
email : { type: String, required: true }
token : { type: String }
inviterName : { type: String }
sentAt : { type: Date }
mongoose.model 'TeamInvite', TeamInviteSchema
exports.TeamInvite = mongoose.model 'TeamInvite'
exports.TeamInviteSchema = TeamInviteSchema