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