- injects signed in session data (if any) to all epf server requests
- optional: auto-loads an epf user model upon sign in
App.Auth = Em.Auth.extend
modules: ['epf']
epf:
# [string|false] enable auto-loading user model by setting this to a
# model type, as in session.load(userModel, id);
# or false to disable auto-loading user model
userModel: false
@auth.get 'user' # access the auto-loaded user model
MIT