From 117aeaa61d15a0e1f10523dcfa7add239c951daa Mon Sep 17 00:00:00 2001 From: Hannah Wolfe Date: Thu, 22 Jun 2017 19:45:35 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Pass=20clientExtensions=20to=20Ghos?= =?UTF-8?q?t=20Admin=20(#8617)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit no issue - pass through this additional config if it exists --- core/server/api/configuration.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/server/api/configuration.js b/core/server/api/configuration.js index e782de9c20..998d77a941 100644 --- a/core/server/api/configuration.js +++ b/core/server/api/configuration.js @@ -30,7 +30,8 @@ function getBaseConfig() { publicAPI: config.get('publicAPI') === true, blogUrl: utils.url.urlFor('home', true), blogTitle: settingsCache.get('title'), - routeKeywords: config.get('routeKeywords') + routeKeywords: config.get('routeKeywords'), + clientExtensions: config.get('clientExtensions') }; }