ghost
Version:
The professional publishing platform
28 lines (24 loc) • 866 B
JavaScript
const settingsCache = require('../../../shared/settings-cache');
const urlUtils = require('../../../shared/url-utils');
const ghostVersion = require('@tryghost/version');
/** @type {import('@tryghost/api-framework').Controller} */
const controller = {
docName: 'settings',
browse: {
headers: {
cacheInvalidate: false
},
permissions: true,
query() {
// @TODO: decouple settings cache from API knowledge
// The controller fetches models (or cached models) and the API frame for the target API version formats the response.
return Object.assign({},
settingsCache.getPublic(), {
url: urlUtils.urlFor('home', true),
version: ghostVersion.safe
}
);
}
}
};
module.exports = controller;