From 7c4d170241a75c41c3fa8cbc4b6bf2c5ee426a5c Mon Sep 17 00:00:00 2001 From: Nikolai Onken Date: Tue, 26 May 2015 13:08:32 +0000 Subject: [PATCH] Fix 401 handling --- node_modules/frontdoor/lib/section.js | 1 + 1 file changed, 1 insertion(+) diff --git a/node_modules/frontdoor/lib/section.js b/node_modules/frontdoor/lib/section.js index 1e027ef0..4162f947 100644 --- a/node_modules/frontdoor/lib/section.js +++ b/node_modules/frontdoor/lib/section.js @@ -87,6 +87,7 @@ module.exports = function Section(name, description, types) { if (!sections[name]) sections[name] = []; + section.parent = this; sections[name].push(section); };