mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-12 08:41:23 -05:00
13 lines
226 B
Text
13 lines
226 B
Text
|
export default Ember.Route.extend({
|
||
|
model(params) {
|
||
|
return {
|
||
|
id: params.step_id,
|
||
|
title: "You're a wizard harry!"
|
||
|
};
|
||
|
},
|
||
|
|
||
|
setupController(controller, model) {
|
||
|
controller.set('step', model);
|
||
|
}
|
||
|
});
|