mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
01ee104f77
This reverts commit 7b05891ba0e87e4cf00fd6b1ea87d7406dc70989.
12 lines
372 B
CoffeeScript
12 lines
372 B
CoffeeScript
mongoose = require 'mongoose'
|
|
Settings = require 'settings-sharelatex'
|
|
|
|
Schema = mongoose.Schema
|
|
ObjectId = Schema.ObjectId
|
|
|
|
SystemMessageSchema = new Schema
|
|
content : type: String, default:''
|
|
|
|
conn = mongoose.createConnection(Settings.mongo.url, server: poolSize: Settings.mongo.poolSize || 10)
|
|
|
|
exports.SystemMessage = conn.model('SystemMessage', SystemMessageSchema)
|