mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-30 01:42:29 +03:00
3ae3e8142a
Refs https://www.notion.so/ghost/Invite-staff-users-steps-in-setup-guide-367737e13d97450a98a0f39ec6b68181 * Simplified the selfhoster setup flow to one setup page only * Redesigned the reset password pages and the signup page for new staff members Co-authored-by: Daniel Lockyer <hi@daniellockyer.com>
14 lines
463 B
JavaScript
14 lines
463 B
JavaScript
import Helper from '@ember/component/helper';
|
|
import classic from 'ember-classic-decorator';
|
|
import {htmlSafe} from '@ember/template';
|
|
import {inject as service} from '@ember/service';
|
|
|
|
@classic
|
|
export default class SiteIconStyleHelper extends Helper {
|
|
@service config;
|
|
|
|
compute() {
|
|
const icon = this.get('config.icon') || 'https://static.ghost.org/v4.0.0/images/ghost-orb-2.png';
|
|
return htmlSafe(`background-image: url(${icon})`);
|
|
}
|
|
} |