Created
August 12, 2016 21:50
-
-
Save maletor/6a1eac429a3fd635263ac503f481b1f8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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