mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 22:02:11 +03:00
f470549e80
refs https://github.com/TryGhost/Team/issues/460 - use the `user.accessibility` field via the `feature` service to add a `launchComplete` property - this is the best place we have currently for UI-specific concerns - toggle the property to `true` when the "Launch!" button is clicked in the final wizard step - hide the launch site wizard link on the dashboard if launch has been completed
7 lines
202 B
JavaScript
7 lines
202 B
JavaScript
import Controller from '@ember/controller';
|
|
import {inject as service} from '@ember/service';
|
|
|
|
export default class DashboardController extends Controller {
|
|
@service feature;
|
|
@service session;
|
|
} |