mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-02 07:43:11 +03:00
21 lines
500 B
JavaScript
21 lines
500 B
JavaScript
|
const ghostVersion = require('../../lib/ghost-version');
|
||
|
const settingsCache = require('../../services/settings/cache');
|
||
|
const urlService = require('../../services/url');
|
||
|
|
||
|
const site = {
|
||
|
docName: 'site',
|
||
|
|
||
|
read: {
|
||
|
permissions: false,
|
||
|
query() {
|
||
|
return {
|
||
|
title: settingsCache.get('title'),
|
||
|
url: urlService.utils.urlFor('home', true),
|
||
|
version: ghostVersion.safe
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
|
||
|
module.exports = site;
|