Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 12:22:54 +01:00
cf50a7deb3
* Apply prettier * applied prettier for similar-topics-validator Co-authored-by: Faizaan Gagan <fzngagan@gmail.com>
13 Zeilen
256 B
JavaScript
13 Zeilen
256 B
JavaScript
import CustomWizard from "../models/custom";
|
|
|
|
export default Ember.Component.extend({
|
|
siteName: function () {
|
|
return Wizard.SiteSettings.title;
|
|
}.property(),
|
|
|
|
actions: {
|
|
skip() {
|
|
CustomWizard.skip(this.get("wizardId"));
|
|
},
|
|
},
|
|
});
|