DS.JSONAPISerializer#_normalizeResourceHelper()

_normalizeResourceHelper (resourceHash) Objectprivate Defined in addon/serializers/json-api.js:167 Parameters: resourceHash Object Returns: Object

Function#property()

propertypublic Defined in packages/ember-runtime/lib/ext/function.js:15 The property extension of Javascript's Function prototype is available when EmberENV.EXTEND_PROTOTYPES or EmberENV.EXTEND_PROTOTYPES.Function is true, which is the default. Computed properties allow you to treat a function like a property: MyApp.President = Ember.Object.extend({ firstName: '', lastName: '', fullName: function() { return this.get('firstName') + ' ' + this.get('lastName'); }.property() // Ca

Route#controllerName

controllerNameStringpublic Defined in packages/ember-routing/lib/system/route.js:525 Available since 1.4.0 The name of the controller to associate with this route. By default, Ember will lookup a route's controller that matches the name of the route (i.e. App.PostController for App.PostRoute). However, if you would like to define a specific controller to use, you can do so using this property. This is useful in many ways, as the controller specified will be: passed to the setupController me

DS.Serializer#store

store{DS.Store}public Defined in addon/serializer.js:29 The store property is the application's store that contains all records. It's injected as a service. It can be used to push records from a non flat data structure server response.

Ember.warn()

warn (message, test, options) public Defined in packages/ember-debug/lib/warn.js:26 Display a warning with the provided message. In a production build, this method is defined as an empty function (NOP). Uses of this method in Ember itself are stripped from the ember.prod.js build. Parameters: message String A warning to display. test Boolean An optional boolean. If falsy, the warning will be displayed. options Object An object that can be used to pass a unique `id` for this war

ApplicationInstance

Ember.ApplicationInstance Class PUBLIC Extends: Ember.EngineInstance Defined in: packages/ember-application/lib/system/application-instance.js:20 Module: ember-application The ApplicationInstance encapsulates all of the stateful aspects of a running Application. At a high-level, we break application boot into two distinct phases: Definition time, where all of the classes, templates, and other dependencies are loaded (typically in the browser). Run time, where we begin executing the applica

Route#teardownViews()

teardownViewsprivate Defined in packages/ember-routing/lib/system/route.js:2059

Location#create()

create (options) Objectdeprecatedprivate Defined in packages/ember-routing/lib/location/api.js:147 Use the container to lookup the location implementation that you need. This is deprecated in favor of using the container to lookup the location implementation as desired. For example: // Given a location registered as follows: container.register('location:history-test', HistoryTestLocation); // You could create a new instance via: container.lookup('location:history-test'); Parameters:

Ember.listenersFor()

listenersFor (obj, eventName) private Defined in packages/ember-metal/lib/events.js:257 Parameters: obj eventName String

DS.Model.transformedAttributes

transformedAttributes{Ember.Map}static Defined in addon/-private/system/model/attr.js:71 A map whose keys are the attributes of the model (properties described by DS.attr) and whose values are type of transformation applied to each attribute. This map does not include any attributes that do not have an transformation type. Example app/models/person.js import DS from 'ember-data'; export default DS.Model.extend({ firstName: attr(), lastName: attr('string'), birthday: attr('date') });