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 |
||
| 23 | class Members extends API\Api |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * Get the group members |
||
| 27 | * |
||
| 28 | * @access public |
||
| 29 | * @param string $account The team or individual account owning the repository. |
||
| 30 | * @param string $repo The repository identifier. |
||
| 31 | * @return ResponseInterface |
||
| 32 | 1 | */ |
|
| 33 | public function all($account, $repo) |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Add new member into a group. |
||
| 42 | * |
||
| 43 | * @access public |
||
| 44 | * @param string $account The team or individual account owning the repository. |
||
| 45 | * @param string $groupSlug The slug of the group. |
||
| 46 | * @param string $memberUuid An individual account. |
||
| 47 | * @return ResponseInterface |
||
| 48 | 1 | */ |
|
| 49 | public function add($account, $groupSlug, $memberUuid) |
||
| 55 | |||
| 56 | /** |
||
| 57 | * Delete a member from group. |
||
| 58 | * |
||
| 59 | * @access public |
||
| 60 | * @param string $account The team or individual account owning the repository. |
||
| 61 | * @param string $groupSlug The slug of the group. |
||
| 62 | * @param string $memberUuid An individual account. |
||
| 63 | * @return ResponseInterface |
||
| 64 | 1 | */ |
|
| 65 | public function delete($account, $groupSlug, $memberUuid) |
||
| 71 | } |
||
| 72 |