From c47f73f7993c93a1a59ff8d2ff2dce6e92d77f8e Mon Sep 17 00:00:00 2001 From: Brian Peacock Date: Wed, 7 May 2014 10:11:48 -0500 Subject: [PATCH] Added pack in user put --- lib/index.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib/index.js b/lib/index.js index b331650aa..7183affac 100644 --- a/lib/index.js +++ b/lib/index.js @@ -201,6 +201,13 @@ module.exports = function(config_hash) { }) }) + app.put('/-/user/:org_couchdb_user', function(req, res, next) { + res.status(409) + return res.send({ + error: 'registration is not implemented', + }) + }) + app.put('/-/user/:org_couchdb_user/-rev/*', function(req, res, next) { if (req.remoteUser == null) { res.status(403)