Ghost/core/server/api/canary/site.js
Hannah Wolfe c70c49258e Added new members/api/site endpoint
- easy way to access public settings needed for building members clients
- no auth means this is for public info only
2020-04-30 19:50:40 +01:00

32 lines
907 B
JavaScript

const ghostVersion = require('../../lib/ghost-version');
const settingsCache = require('../../services/settings/cache');
const urlUtils = require('../../lib/url-utils');
const config = require('../../config');
const site = {
docName: 'site',
read: {
permissions: false,
query() {
const response = {
title: settingsCache.get('title'),
description: settingsCache.get('description'),
logo: settingsCache.get('logo'),
brand: settingsCache.get('brand'),
url: urlUtils.urlFor('home', true),
version: ghostVersion.safe
};
// Brand is currently an experimental feature
if (!config.get('enableDeveloperExperiments')) {
delete response.brand;
}
return response;
}
}
};
module.exports = site;