mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
0ca81de78c
Decaffeinate backend GitOrigin-RevId: 4ca9f94fc809cab6f47cec8254cacaf1bb3806fa
21 lines
592 B
JavaScript
21 lines
592 B
JavaScript
/* eslint-disable
|
|
no-unused-vars,
|
|
*/
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
// Fix any style issues and re-enable lint.
|
|
const mongoose = require('mongoose')
|
|
const Settings = require('settings-sharelatex')
|
|
|
|
const { Schema } = mongoose
|
|
const { ObjectId } = Schema
|
|
|
|
const 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
|