UNPKG

keystone

Version:

Web Application Framework and Admin GUI / Content Management System built on Express.js and Mongoose

10 lines (8 loc) 259 B
var debug = require('debug')('keystone:core:closeDatabaseConnection'); module.exports = function closeDatabaseConnection (callback) { this.mongoose.disconnect(function () { debug('mongo connection closed'); callback && callback(); }); return this; };