From 25f72a58e6703bdc931d739456de1a128f61c3da Mon Sep 17 00:00:00 2001 From: Scott Erickson Date: Wed, 16 Apr 2014 08:03:50 -0700 Subject: [PATCH] Added a line for testing the loading system. --- server/commons/Handler.coffee | 1 + 1 file changed, 1 insertion(+) diff --git a/server/commons/Handler.coffee b/server/commons/Handler.coffee index 23909b6a2..e1e08a761 100644 --- a/server/commons/Handler.coffee +++ b/server/commons/Handler.coffee @@ -83,6 +83,7 @@ module.exports = class Handler @sendSuccess(res, documents) getById: (req, res, id) -> +# return @sendNotFoundError(res) # for testing return @sendUnauthorizedError(res) unless @hasAccess(req) @getDocumentForIdOrSlug id, (err, document) =>