gitea/src/07fce5f7-eb13-4dda-8870-77c...
Robot 12042ffd4d
update 2024-04-07 13:20:18
2024-04-07 13:20:22 +02:00
..
README.md update 2023-10-10 10:16:07 2023-10-10 11:39:23 +02:00
code.php first commit 2023-04-15 17:08:07 +02:00
code.power first commit 2023-04-15 17:08:07 +02:00
settings.json update 2024-04-07 13:20:18 2024-04-07 13:20:22 +02:00

README.md

██████╗  ██████╗ ██╗    ██╗███████╗██████╗
██╔══██╗██╔═══██╗██║    ██║██╔════╝██╔══██╗
██████╔╝██║   ██║██║ █╗ ██║█████╗  ██████╔╝
██╔═══╝ ██║   ██║██║███╗██║██╔══╝  ██╔══██╗
██║     ╚██████╔╝╚███╔███╔╝███████╗██║  ██║
╚═╝      ╚═════╝  ╚══╝╚══╝ ╚══════╝╚═╝  ╚═╝

class Repository (Details)

namespace: VDM\Joomla\Gitea\Organization\Teams extends: Api

@startuml
class Repository  #Gold {
  + list(int $teamId, int $pageNumber = 1, ...) : ?array
  + get(int $teamId, string $organization, ...) : ?object
  + add(int $id, string $org, ...) : string
  + remove(int $id, string $org, ...) : string
}

note right of Repository::list
  List a team's repos.

  since: 3.2.0
  return: ?array
  
  arguments:
    int $teamId
    int $pageNumber = 1
    int $pageSize = 10
end note

note right of Repository::get
  List a particular repo of the team.

  since: 3.2.0
  return: ?object
  
  arguments:
    int $teamId
    string $organization
    string $repository
end note

note right of Repository::add
  Add a repository to a team.

  since: 3.2.0
  return: string
  
  arguments:
    int $id
    string $org
    string $repo
end note

note right of Repository::remove
  Remove a repository from a team.

  since: 3.2.0
  return: string
  
  arguments:
    int $id
    string $org
    string $repo
end note
 
@enduml

     ██╗ ██████╗██████╗
     ██║██╔════╝██╔══██╗
     ██║██║     ██████╔╝
██   ██║██║     ██╔══██╗
╚█████╔╝╚██████╗██████╔╝
 ╚════╝  ╚═════╝╚═════╝

Build with Joomla Component Builder