mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
15 lines
465 B
CoffeeScript
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
|