DS.RecordArray#removeInternalModel()

removeInternalModel (internalModel) private Defined in addon/-private/system/record-arrays/record-array.js:159 Removes an internalModel to the RecordArray. Parameters: internalModel InternalModel

Route#redirect()

redirect (model, transition) public Defined in packages/ember-routing/lib/system/route.js:1368 A hook you can implement to optionally redirect to another route. If you call this.transitionTo from inside of this hook, this route will not be entered in favor of the other hook. redirect and afterModel behave very similarly and are called almost at the same time, but they have an important distinction in the case that, from one of these hooks, a redirect into a child route of this route occurs:

DS.ManyArray#save()

saveDS.PromiseArray Defined in addon/-private/system/many-array.js:244 Saves all of the records in the ManyArray. Example store.findRecord('inbox', 1).then(function(inbox) { inbox.get('messages').then(function(messages) { messages.forEach(function(message) { message.set('isRead', true); }); messages.save() }); }); Returns: DS.PromiseArray promise

DS.RootState

DS.RootState Class Defined in: addon/-private/system/model/states.js:12 Module: ember-data State Each record has a currentState property that explicitly tracks what state a record is in at any given time. For instance, if a record is newly created and has not yet been sent to the adapter to be saved, it would be in the root.loaded.created.uncommitted state. If a record has had local modifications made to it that are in the process of being saved, the record would be in the root.loaded.upda

DataAdapter#acceptsModelName

acceptsModelNamepublic Defined in packages/ember-extension-support/lib/data_adapter.js:91 Ember Data > v1.0.0-beta.18 requires string model names to be passed around instead of the actual factories. This is a stamp for the Ember Inspector to differentiate between the versions to be able to support older versions too.

DS.Store#findRecord()

findRecord (modelName, id, options) Promise Defined in addon/-private/system/store.js:461 Available since 1.13.0 This method returns a record for a given type and id combination. The findRecord method will always resolve its promise with the same object for a given type and id. The findRecord method will always return a promise that will be resolved with the record. Example app/routes/post.js import Ember from 'ember'; export default Ember.Route.extend({ model: function(params) { ret

DS.RecordArray#objectAtContent()

objectAtContent (index) DS.Modelprivate Defined in addon/-private/system/record-arrays/record-array.js:91 Retrieves an object from the content by index. Parameters: index Number Returns: DS.Model record

PromiseProxyMixin#reason

reasonpublic Defined in packages/ember-runtime/lib/mixins/promise_proxy.js:93 If the proxied promise is rejected this will contain the reason provided. Default: null

ProxyMixin#content

contentEmber.Objectprivate Defined in packages/ember-runtime/lib/mixins/-proxy.js:54 The object whose properties will be forwarded. Default: null

DefaultResolver#knownForType()

knownForType (type) private Defined in packages/ember-application/lib/system/resolver.js:423 Used to iterate all items of a given type. Parameters: type String the type to search for