overleaf/services/chat/app/coffee/mongojs.js

8 lines
203 B
JavaScript
Raw Normal View History

const Settings = require("settings-sharelatex");
const mongojs = require("mongojs");
const db = mongojs(Settings.mongo.url, ["rooms", "messages"]);
module.exports = {
db,
2014-08-15 05:50:36 -04:00
ObjectId: mongojs.ObjectId
};