Skip to content

Commit

Permalink
Wrong SslCertificates enable/disable endpoint (#68)
Browse files Browse the repository at this point in the history
Co-authored-by: Thomas DENOLLE <[email protected]>
  • Loading branch information
solocal-ecommerce and Thomas DENOLLE authored May 7, 2020
1 parent fd85667 commit 6f01d79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Endpoints/SslCertificates.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public function disable($environmentUuid, $certificateId)
return new OperationResponse(
$this->client->request(
'post',
"/environments/${environmentUuid}/ssl/certificate/${certificateId}/actions/deactivate"
"/environments/${environmentUuid}/ssl/certificates/${certificateId}/actions/deactivate"
)
);
}
Expand All @@ -121,7 +121,7 @@ public function enable($environmentUuid, $certificateId)
return new OperationResponse(
$this->client->request(
'post',
"/environments/${environmentUuid}/ssl/certificate/${certificateId}/actions/activate"
"/environments/${environmentUuid}/ssl/certificates/${certificateId}/actions/activate"
)
);
}
Expand Down

0 comments on commit 6f01d79

Please sign in to comment.