Skip to content

Instantly share code, notes, and snippets.

@hackerrdave
Created April 25, 2015 18:54
Show Gist options
  • Save hackerrdave/e9362a605b0b9f6c0346 to your computer and use it in GitHub Desktop.
Save hackerrdave/e9362a605b0b9f6c0346 to your computer and use it in GitHub Desktop.
Ember Services Injection
// app/routes/index.js
import Ember from 'ember';
export default Ember.Route.extend({
authManager: Ember.inject.service(),
currentUser: Ember.computed.alias('authManager.currentUser'),
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment