1
0
Fork 0
discourse-custom-wizard-unl.../assets/javascripts/discourse/routes/admin-wizards-api-show.js.es6

17 Zeilen
419 B
Text

2021-02-24 08:43:35 +01:00
import CustomWizardApi from "../models/custom-wizard-api";
2020-04-13 14:17:22 +02:00
import DiscourseRoute from "discourse/routes/discourse";
export default DiscourseRoute.extend({
model(params) {
2021-02-24 08:43:35 +01:00
if (params.name === "create") {
2020-04-13 14:17:22 +02:00
return CustomWizardApi.create({ isNew: true });
} else {
return CustomWizardApi.find(params.name);
}
},
2021-02-24 08:43:35 +01:00
setupController(controller, model) {
2020-04-13 14:17:22 +02:00
controller.set("api", model);
2021-02-24 08:43:35 +01:00
},
2020-04-13 14:17:22 +02:00
});