Ghost/core/frontend/meta/blog-logo.js
Hannah Wolfe af4bfb8862
Changed meta filenames to correct casing
- purely for cleanliness!
- we use kebabcase by default
- tests should be kebab-case-file_spec.js (one day we want this to be .test.js)
2021-07-01 12:30:25 +01:00

21 lines
684 B
JavaScript

const urlUtils = require('../../shared/url-utils');
const settingsCache = require('../../shared/settings-cache');
const {blogIcon} = require('../../server/lib/image');
function getBlogLogo() {
const logo = {};
if (settingsCache.get('logo')) {
logo.url = urlUtils.urlFor('image', {image: settingsCache.get('logo')}, true);
} else {
// CASE: no publication logo is updated. We can try to use either an uploaded publication icon
// or use the default one to make
// Google happy with it. See https://github.com/TryGhost/Ghost/issues/7558
logo.url = blogIcon.getIconUrl(true);
}
return logo;
}
module.exports = getBlogLogo;