Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-23 01:40:29 +01:00
12 Zeilen
347 B
Text
12 Zeilen
347 B
Text
|
import { getOwner } from "discourse-common/lib/get-owner";
|
||
|
|
||
|
export default {
|
||
|
setupComponent() {
|
||
|
const controller = getOwner(this).lookup('controller:admin-dashboard')
|
||
|
const wizardWarningNotice = controller.get('wizardWarningNotice');
|
||
|
|
||
|
if (wizardWarningNotice) {
|
||
|
this.set('wizardWarningNotice', wizardWarningNotice);
|
||
|
}
|
||
|
}
|
||
|
}
|