Skip to content

Commit

Permalink
pass over publishing notes
Browse files Browse the repository at this point in the history
implements dyninc#22
  • Loading branch information
tibu authored Jan 5, 2018
1 parent 5e6c1ef commit cb1fb9f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/TrafficManagement/Zone.php
Original file line number Diff line number Diff line change
Expand Up @@ -618,12 +618,13 @@ public function getNodeList($fqdn = null)
*
* @return ApiResponse
*/
public function publish()
public function publish($notes = null)
{
return $this->apiClient->put(
'/Zone/'.$this->getName(),
array(
'publish' => true
'publish' => true,
'notes' => $notes
)
);
}
Expand Down

0 comments on commit cb1fb9f

Please sign in to comment.