mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 17:32:15 +03:00
18 lines
566 B
JavaScript
18 lines
566 B
JavaScript
|
const settingsCache = require('../../services/settings/cache');
|
||
|
const urlUtils = require('../../lib/url-utils');
|
||
|
|
||
|
module.exports = {
|
||
|
docName: 'settings',
|
||
|
|
||
|
browse: {
|
||
|
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)
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
};
|