gitea/src/c7b31fc2-892b-4235-beb2-341.../README.md

78 lines
2.2 KiB
Markdown
Raw Permalink Normal View History

2023-04-15 15:08:07 +00:00
```
██████╗ ██████╗ ██╗ ██╗███████╗██████╗
██╔══██╗██╔═══██╗██║ ██║██╔════╝██╔══██╗
██████╔╝██║ ██║██║ █╗ ██║█████╗ ██████╔╝
██╔═══╝ ██║ ██║██║███╗██║██╔══╝ ██╔══██╗
██║ ╚██████╔╝╚███╔███╔╝███████╗██║ ██║
╚═╝ ╚═════╝ ╚══╝╚══╝ ╚══════╝╚═╝ ╚═╝
```
# class Teams (Details)
> namespace: **VDM\Joomla\Gitea\Repository**
2023-10-10 09:39:23 +00:00
> extends: **Api**
2023-04-15 15:08:07 +00:00
```uml
@startuml
class Teams #Gold {
+ list(string $ownerOfRepo, string $nameOfRepo) : ?array
+ check(string $ownerOfRepo, string $nameOfRepo, ...) : ?object
+ add(string $ownerName, string $repoName, ...) : string
+ delete(string $ownerName, string $repoName, ...) : string
}
note right of Teams::list
List a repository's teams.
since: 3.2.0
return: ?array
end note
note right of Teams::check
Check if a team is assigned to a repository.
since: 3.2.0
return: ?object
arguments:
string $ownerOfRepo
string $nameOfRepo
string $teamName
end note
note right of Teams::add
Add a team to a repository.
since: 3.2.0
return: string
arguments:
string $ownerName
string $repoName
string $teamName
end note
note right of Teams::delete
Delete a team from a repository.
since: 3.2.0
return: string
arguments:
string $ownerName
string $repoName
string $teamName
end note
@enduml
```
---
```
██╗ ██████╗██████╗
██║██╔════╝██╔══██╗
██║██║ ██████╔╝
██ ██║██║ ██╔══██╗
╚█████╔╝╚██████╗██████╔╝
╚════╝ ╚═════╝╚═════╝
```
> Build with [Joomla Component Builder](https://git.vdm.dev/joomla/Component-Builder)