mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
10 lines
182 B
Text
10 lines
182 B
Text
|
export default Ember.Route.extend({
|
||
|
model() {
|
||
|
return this.store.find('embedding');
|
||
|
},
|
||
|
|
||
|
setupController(controller, model) {
|
||
|
controller.set('embedding', model);
|
||
|
}
|
||
|
});
|