Ghost/core/frontend/meta/blog_logo.js
Vikas Potluri aeee302c9d
refactored 'lib/image' imports to use destructuring (#11847)
* refactored 'lib/image' imports to use destructuring
* trigger all-tests
2020-05-26 19:11:23 +01:00

21 lines
697 B
JavaScript

const urlUtils = require('../../server/lib/url-utils');
const settingsCache = require('../../server/services/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;