UNPKG

@fleetbase/ember-ui

Version:

Fleetbase UI provides all the interface components, helpers, services and utilities for building a Fleetbase extension into the Console.

8 lines (6 loc) 263 B
import { getOwner } from '@ember/application'; export default function isFastBoot(context) { let owner = getOwner(context); let fastbootService = owner.lookup('service:fastboot'); return fastbootService ? fastbootService.get('isFastBoot') : false; }