0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2025-02-01 10:57:03 +01:00
discourse-custom-wizard/assets/javascripts/discourse/routes/admin-wizards-transfer.js.es6

13 Zeilen
284 B
Text

import CustomWizard from '../models/custom-wizard';
2020-03-22 04:30:11 +11:00
import DiscourseRoute from "discourse/routes/discourse";
2020-03-22 04:30:11 +11:00
export default DiscourseRoute.extend({
model() {
2019-08-07 20:46:05 +10:00
return CustomWizard.all();
2020-04-15 12:34:39 +10:00
},
setupController(controller, model) {
controller.set('wizards', model)
2019-08-07 20:46:05 +10:00
}
});