2019-10-23 13:06:54 -04:00
|
|
|
import Controller from "@ember/controller";
|
2019-11-07 16:38:28 -05:00
|
|
|
import discourseComputed from "discourse-common/utils/decorators";
|
2016-09-19 16:11:15 -04:00
|
|
|
|
2019-10-23 13:06:54 -04:00
|
|
|
export default Controller.extend({
|
2016-09-19 16:11:15 -04:00
|
|
|
currentStepId: null,
|
|
|
|
|
2019-11-07 16:38:28 -05:00
|
|
|
@discourseComputed("currentStepId")
|
2016-09-19 16:11:15 -04:00
|
|
|
showCanvas(currentStepId) {
|
|
|
|
return currentStepId === "finished";
|
|
|
|
}
|
|
|
|
});
|