Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-12 21:22:54 +01:00
12 Zeilen
207 B
Text
12 Zeilen
207 B
Text
|
import CustomWizard from '../models/custom-wizard';
|
||
|
export default Discourse.Route.extend({
|
||
|
|
||
|
model(){
|
||
|
return CustomWizard.all()
|
||
|
},
|
||
|
isEmberized: true
|
||
|
// isEmberized(){
|
||
|
// return true;
|
||
|
// }
|
||
|
})
|