2021-01-26 13:35:10 +05:30
|
|
|
import Component from "@ember/component";
|
|
|
|
import { observes } from "discourse-common/utils/decorators";
|
|
|
|
export default Component.extend({
|
|
|
|
actions:{
|
|
|
|
perform() {
|
2021-01-30 23:16:04 +05:30
|
|
|
this.appEvents.trigger('custom-wizard:validate');
|
2021-01-26 13:35:10 +05:30
|
|
|
}
|
2021-01-30 23:16:04 +05:30
|
|
|
},
|
2021-01-26 13:35:10 +05:30
|
|
|
});
|