Skip to content

Commit a973921

Browse files
committed
Fix tag create command.
1 parent c73560e commit a973921

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Collections/Tags.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public function create($tag)
4343
{
4444
$params = [$tag => ['sites' => [$this->org_site_membership->getSite()->id,],],];
4545
$this->request->request(
46-
"organizations/{$this->org_site_membership->getOrganization()->id}/tags",
46+
"organizations/{$this->org_site_membership->id}/tags",
4747
['method' => 'put', 'form_params' => $params,]
4848
);
4949
$this->getContainer()->add($this->collected_class)

0 commit comments

Comments
 (0)