Skip to content

Commit

Permalink
Merge pull request #27 from productflowbv/feature/add-options-to-kauf…
Browse files Browse the repository at this point in the history
…land
  • Loading branch information
jeroensurft authored Jun 5, 2024
2 parents ef35eef + 29e60d5 commit 273adc2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/Resources/Attribute.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ public function list()
*/
public function show($identifier)
{
return $this->connection->request('GET', "attributes/{$identifier}");
return $this->connection->request('GET', "attributes/{$identifier}", ['query' => $this->getQuery()]);
}

public function showSharedSet($identifier)
{
return $this->connection->request('GET', "attributes/{$identifier}/shared-set", ['query' => $this->getQuery()]);
}
}

0 comments on commit 273adc2

Please sign in to comment.