Skip to content

Instantly share code, notes, and snippets.

@maletor
Created August 12, 2016 21:50
Show Gist options
  • Save maletor/6a1eac429a3fd635263ac503f481b1f8 to your computer and use it in GitHub Desktop.
Save maletor/6a1eac429a3fd635263ac503f481b1f8 to your computer and use it in GitHub Desktop.
import Ember from 'ember';
export default Ember.Component.extend({
store: Ember.inject.service(),
personsYouMayKnow: [],
willRender: function() {
this.get('store').findAll('persons_you_may_know').then((users) => {
this.set('personsYouMayKnow', users);
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment