Pass clientExtensions to Ghost Admin (#8617)

no issue

- pass through this additional config if it exists
This commit is contained in:
Hannah Wolfe 2017-06-22 19:45:35 +01:00 committed by Katharina Irrgang
parent 79e4b08f0e
commit 117aeaa61d

View File

@ -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')
};
}