Skip to content
This repository has been archived by the owner on Sep 14, 2019. It is now read-only.

Commit

Permalink
Fix Tasklist Update
Browse files Browse the repository at this point in the history
  • Loading branch information
rossedman committed May 25, 2015
1 parent 23fca7c commit 679517a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Rossedman/Teamwork/Tasklist.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public function find()
*/
public function update($data)
{
return $this->client->put("tasklist/$this->id", [$this->wrapper => $data])->response();
return $this->client->put("$this->endpoint/$this->id", [$this->wrapper => $data])->response();
}

/**
Expand Down

0 comments on commit 679517a

Please sign in to comment.