Fix hooks toggling
When changing adapter to make it work with env vars I used PATCH method. Hooks are using PUT to update active fields, so it broke hooks. This commit moves saveRecord with PATCH to env vars' adapter.
This commit is contained in:
parent
b43842dade
commit
0014c65cbd
|
@ -94,7 +94,7 @@ Travis.Adapter = Ember.RESTAdapter.extend
|
|||
url = this.buildURL(record.constructor, get(record, primaryKey), record)
|
||||
self = this
|
||||
|
||||
return this.ajax(url, record.toJSON(), "PATCH").then (data) ->
|
||||
return this.ajax(url, record.toJSON(), "PUT").then (data) ->
|
||||
self.didSaveRecord(record, data)
|
||||
return record
|
||||
|
||||
|
|
|
@ -8,3 +8,14 @@ Travis.EnvVarsAdapter = Travis.Adapter.extend
|
|||
url = "#{url}?repository_id=#{repo_id}"
|
||||
|
||||
url
|
||||
|
||||
saveRecord: (record) ->
|
||||
primaryKey = get(record.constructor, 'primaryKey')
|
||||
url = this.buildURL(record.constructor, get(record, primaryKey), record)
|
||||
self = this
|
||||
|
||||
return this.ajax(url, record.toJSON(), "PUT").then (data) ->
|
||||
self.didSaveRecord(record, data)
|
||||
return record
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user