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

10 lines
304 B
JavaScript

// TODO: This file was created by bulk-decaffeinate.
// Sanity-check the conversion and remove this comment.
const Settings = require("settings-sharelatex");
const mongojs = require("mongojs");
const db = mongojs(Settings.mongo.url, ["contacts"]);
module.exports = {
db,
ObjectId: mongojs.ObjectId
};