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/wizard/components/wizard-no-access.js.es6

26 Zeilen
618 B
Text

2022-03-16 12:33:34 +01:00
import CustomWizard from "../models/wizard";
import discourseComputed from "discourse-common/utils/decorators";
import Component from "@ember/component";
import { dasherize } from "@ember/string";
2022-03-16 12:33:34 +01:00
export default Component.extend({
2022-03-16 12:46:16 +01:00
classNameBindings: [":wizard-no-access", "reasonClass"],
layoutName: "wizard/templates/components/wizard-no-access",
2022-03-16 12:33:34 +01:00
2022-03-16 12:46:16 +01:00
@discourseComputed("reason")
2022-03-16 12:33:34 +01:00
reasonClass(reason) {
return dasherize(reason);
},
@discourseComputed
siteName() {
2022-03-16 12:46:16 +01:00
return this.siteSettings.title || "";
2022-03-16 12:33:34 +01:00
},
actions: {
skip() {
CustomWizard.skip(this.get("wizardId"));
},
},
2019-06-19 07:39:39 +02:00
});