We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93f0181 commit 1bce18eCopy full SHA for 1bce18e
src/Api/Projects.php
@@ -1457,6 +1457,26 @@ public function removeShare($project_id, $group_id)
1457
return $this->delete($this->getProjectPath($project_id, 'share/'.$group_id));
1458
}
1459
1460
+ /**
1461
+ * @param int|string $project_id
1462
+ *
1463
+ * @return mixed
1464
+ */
1465
+ public function starrers($project_id)
1466
+ {
1467
+ return $this->get($this->getProjectPath($project_id, 'starrers'));
1468
+ }
1469
+
1470
1471
1472
1473
1474
1475
+ public function star($project_id)
1476
1477
+ return $this->post($this->getProjectPath($project_id, 'star'));
1478
1479
1480
/**
1481
* @param int|string $project_id
1482
*
0 commit comments