Skip to content

Commit 93aa6e2

Browse files
committed
feat: allow parameters to be passed to project access tokens request
1 parent 362450f commit 93aa6e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Api/Projects.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1126,9 +1126,9 @@ public function deleteAllMergedBranches(int|string $project_id): mixed
11261126
return $this->delete($this->getProjectPath($project_id, 'repository/merged_branches'));
11271127
}
11281128

1129-
public function projectAccessTokens(int|string $project_id): mixed
1129+
public function projectAccessTokens(int|string $project_id, array $parameters = []): mixed
11301130
{
1131-
return $this->get($this->getProjectPath($project_id, 'access_tokens'));
1131+
return $this->get($this->getProjectPath($project_id, 'access_tokens'), $parameters);
11321132
}
11331133

11341134
public function projectAccessToken(int|string $project_id, int|string $token_id): mixed

0 commit comments

Comments
 (0)