mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-03-31 09:09:53 -04: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);
|
||
|
}
|
||
|
});
|