Skip to content

Commit

Permalink
Adding passthrough parameters for transform API. #484
Browse files Browse the repository at this point in the history
  • Loading branch information
jmathai committed Aug 25, 2013
1 parent 8d23a5d commit 41e31b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libraries/controllers/ApiPhotoController.php
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ public function transform($id)

if($res)
{
$apiResp = $this->api->invoke("/{$this->apiVersion}/photo/{$id}/view.json", EpiRoute::httpGet);
$apiResp = $this->api->invoke("/{$this->apiVersion}/photo/{$id}/view.json", EpiRoute::httpGet, array('_GET' => $_POST));
$photo = $apiResp['result'];
return $this->success('Successfully transformed the photo', $photo);
}
Expand Down

0 comments on commit 41e31b7

Please sign in to comment.