mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
34 lines
986 B
JavaScript
34 lines
986 B
JavaScript
|
// TODO: This file was created by bulk-decaffeinate.
|
||
|
// Sanity-check the conversion and remove this comment.
|
||
|
const mongoose = require('mongoose')
|
||
|
const Settings = require('settings-sharelatex')
|
||
|
const { ProjectSchema } = require('./Project.js')
|
||
|
|
||
|
const { Schema } = mongoose
|
||
|
const { ObjectId } = Schema
|
||
|
|
||
|
const DeleterDataSchema = new Schema({
|
||
|
deleterId: { type: ObjectId, ref: 'User' },
|
||
|
deleterIpAddress: { type: String },
|
||
|
deletedAt: { type: Date }
|
||
|
})
|
||
|
|
||
|
const DeletedProjectSchema = new Schema(
|
||
|
{
|
||
|
deleterData: [DeleterDataSchema],
|
||
|
project: [ProjectSchema]
|
||
|
},
|
||
|
{ collection: 'deletedProjects' }
|
||
|
)
|
||
|
|
||
|
const conn = mongoose.createConnection(Settings.mongo.url, {
|
||
|
server: { poolSize: Settings.mongo.poolSize || 10 },
|
||
|
config: { autoIndex: false }
|
||
|
})
|
||
|
|
||
|
const DeletedProject = conn.model('DeletedProject', DeletedProjectSchema)
|
||
|
|
||
|
mongoose.model('DeletedProject', DeletedProjectSchema)
|
||
|
exports.DeletedProject = DeletedProject
|
||
|
exports.DeletedProjectSchema = DeletedProjectSchema
|