mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-03 06:09:02 +02:00
0ca81de78c
Decaffeinate backend GitOrigin-RevId: 4ca9f94fc809cab6f47cec8254cacaf1bb3806fa
22 lines
592 B
JavaScript
22 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
|