We have detected an error in your notification set-up
(Event-ID dab39dc24f564ec7bd4628d1305fd03c).
Currently, we cannot inform you about inspection progress.
Please check that the user
557058:bca11929-8c2d-43f2-8a82-c5416880d395 still has access to your repository or
update the API account.
| 1 | <?php |
||
| 8 | class Permissions extends Api |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Get the highest permissions for every member of the team |
||
| 12 | * |
||
| 13 | * @param string $team The team's name or uuid. |
||
| 14 | * @return ResponseInterface |
||
| 15 | */ |
||
| 16 | public function all($team) |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Get the permissions of every member for every repository of the team |
||
| 25 | * |
||
| 26 | * @param string $team The team's name or uuid. |
||
| 27 | * @return ResponseInterface |
||
| 28 | */ |
||
| 29 | public function repositories($team) |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Get the permissions of every member for every repository of the team |
||
| 38 | * |
||
| 39 | * @param string $team The team's name or uuid. |
||
| 40 | * @param string $repo The repository identifier. |
||
| 41 | * @return ResponseInterface |
||
| 42 | */ |
||
| 43 | public function repository($team, $repo) |
||
| 49 | } |
||
| 50 |