Skip to content

Commit

Permalink
Added getTagsUsers
Browse files Browse the repository at this point in the history
  • Loading branch information
agraciakuvut committed Jan 9, 2018
1 parent 9e35bf3 commit 55b9aa9
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/KuvutTagging/KuvutTagging.php
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,16 @@ public function getTagUsers(array $options = [])
return $this->getResponseBaseOptions($method, $url);
}

public function getTagsUsers(array $options = [])
{
$method = 'GET';
if (empty($options['tags'])) {
throw new \Exception('Tags missing');
}
$url = $this->parseUrl('/user/get-users-tags/', $options);
return $this->getResponseBaseOptions($method, $url, $options);
}

public function getTagCategoryUsers(array $options = [])
{
$method = 'GET';
Expand Down

0 comments on commit 55b9aa9

Please sign in to comment.