travis-web/assets/scripts/lib/travis/adapters/env_vars.coffee
Piotr Sarnacki 0014c65cbd 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.
2014-08-21 20:23:05 +02:00

22 lines
604 B
CoffeeScript

require 'travis/adapter'
get = Ember.get
Travis.EnvVarsAdapter = Travis.Adapter.extend
buildURL: (klass, id, record) ->
url = @_super.apply this, arguments
if record && (repo_id = get(record, 'repository_id') || get(record, 'repo.id'))
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