With the recent update, I know that in routers and controllers, I can easily just do this.store.find(\'model\'). However I have some functions that need to call
this.store.find(\'model\')
You can try to do
this.get('controller').get('store').find('model')
That would wok in a View for example.