0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00

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, publicAPI: config.get('publicAPI') === true,
blogUrl: utils.url.urlFor('home', true), blogUrl: utils.url.urlFor('home', true),
blogTitle: settingsCache.get('title'), blogTitle: settingsCache.get('title'),
routeKeywords: config.get('routeKeywords') routeKeywords: config.get('routeKeywords'),
clientExtensions: config.get('clientExtensions')
}; };
} }