0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-11-15 22:32:54 +01:00
discourse-custom-wizard/assets/javascripts/wizard/components/wizard-no-access.js.es6

14 Zeilen
256 B
Text

2021-02-24 08:43:35 +01:00
import CustomWizard from "../models/custom";
export default Ember.Component.extend({
2021-02-24 08:43:35 +01:00
siteName: function () {
return Wizard.SiteSettings.title;
}.property(),
actions: {
skip() {
2021-02-24 08:43:35 +01:00
CustomWizard.skip(this.get("wizardId"));
},
},
2019-06-19 07:39:39 +02:00
});