[specs] Properly use internal ember-data methods
We need to use a few internal methods until we switch to ED 2.0, this commit fixes their usage.
This commit is contained in:
parent
c7f412f636
commit
507dcc7376
|
@ -15,8 +15,8 @@ AddSshKeyComponent = Ember.Component.extend
|
|||
# once https://github.com/emberjs/data/pull/2867
|
||||
# and https://github.com/emberjs/data/pull/2870 are merged
|
||||
if model
|
||||
@get('store').dematerializeRecord(model)
|
||||
typeMap = @get('store').typeMapFor('sshKey')
|
||||
@get('store').dematerializeRecord(model._internalModel)
|
||||
typeMap = @get('store').typeMapFor(model.constructor)
|
||||
idToRecord = typeMap.idToRecord
|
||||
delete idToRecord[id]
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user