UNPKG

express-pouchdb

Version:

Express submodule with a CouchDB-style REST interface to PouchDB.

12 lines (9 loc) 232 B
"use strict"; var utils = require('../utils'); module.exports = function (app) { // Active tasks (stub for now) app.get('/_active_tasks', function (req, res) { // TODO: implement utils.sendJSON(res, 200, []); }); };