Skip to content

Instantly share code, notes, and snippets.

@joachimhs
Created January 5, 2014 21:41
Show Gist options
  • Save joachimhs/8274302 to your computer and use it in GitHub Desktop.
Save joachimhs/8274302 to your computer and use it in GitHub Desktop.
Emberfest.ProfileRoute = Ember.Route.extend({
model: function() {
var uuidToken = this.controllerFor('user').readCookie('uuidToken');
console.log('ProfileRoute uuidToken: ' + uuidToken);
return this.store.find('user', uuidToken);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment