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 97301c8 commit 71d1408Copy full SHA for 71d1408
src/Api/Projects.php
@@ -1568,6 +1568,17 @@ public function approvalsConfiguration($project_id)
1568
return $this->get('projects/'.self::encodePath($project_id).'/approvals');
1569
}
1570
1571
+ /**
1572
+ * @param int|string $project_id
1573
+ * @param array $parameters
1574
+ *
1575
+ * @return mixed
1576
+ */
1577
+ public function updateApprovalsConfiguration($project_id, array $parameters = [])
1578
+ {
1579
+ return $this->post('projects/'.self::encodePath($project_id).'/approvals', $parameters);
1580
+ }
1581
+
1582
/**
1583
* @param int|string $project_id
1584
*
0 commit comments