mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 14:03:48 +03:00
11 lines
271 B
JavaScript
11 lines
271 B
JavaScript
|
import Helper from '@ember/component/helper';
|
||
|
import {inject as service} from '@ember/service';
|
||
|
|
||
|
export default class IsOnboardingStepCompleted extends Helper {
|
||
|
@service onboarding;
|
||
|
|
||
|
compute([step]) {
|
||
|
return this.onboarding.isStepCompleted(step);
|
||
|
}
|
||
|
}
|