0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-20 07:41:11 +02:00
discourse-custom-wizard/assets/javascripts/discourse/connectors/admin-dashboard-top/custom-wizard-important-notice.js.es6

17 Zeilen
445 B
Text

2021-10-05 14:54:06 +02:00
import { getOwner } from "discourse-common/lib/get-owner";
export default {
shouldRender(attrs, ctx) {
return ctx.siteSettings.wizard_important_notices_on_dashboard;
},
setupComponent() {
2021-10-19 14:49:06 +02:00
const controller = getOwner(this).lookup("controller:admin-dashboard");
const importantNotice = controller.get("customWizardImportantNotice");
2021-10-05 14:54:06 +02:00
if (importantNotice) {
2021-10-19 14:49:06 +02:00
this.set("importantNotice", importantNotice);
2021-10-05 14:54:06 +02:00
}
2021-10-19 14:49:06 +02:00
},
};