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:
Piotr Sarnacki 2014-08-21 20:23:00 +02:00
parent b43842dade
commit 0014c65cbd
2 changed files with 12 additions and 1 deletions

View File

@ -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

View File

@ -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