gitea/src/8efd9070-7110-4b8e-bb76-cb1...
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 Organization (Details)

namespace: VDM\Joomla\Gitea extends: Api

@startuml
class Organization  #Gold {
  + create(string $login, string $fullName, ...) : ?object
  + get(string $org) : ?object
  + list(int $page = 1, int $limit = 10) : ?array
  + delete(string $org) : string
  + edit(string $org, ?string $fullName = null, ...) : ?object
}

note right of Organization::create
  Create an organization.

  since: 3.2.0
  return: ?object
  
  arguments:
    string $login
    string $fullName
    string $email
    string $description = ''
    bool $repoAdmin = false
    bool $teamAdmin = false
end note

note right of Organization::get
  Get an organization.

  since: 3.2.0
  return: ?object
end note

note right of Organization::list
  Get a list of organizations.

  since: 3.2.0
  return: ?array
end note

note right of Organization::delete
  Delete an organization.

  since: 3.2.0
  return: string
end note

note right of Organization::edit
  Edit an organization.

  since: 3.2.0
  return: ?object
  
  arguments:
    string $org
    ?string $fullName = null
    ?string $email = null
    ?string $location = null
    ?string $description = null
    ?bool $repoAdmin = null
    ?string $visibility = null
    ?string $website = null
end note
 
@enduml

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

Build with Joomla Component Builder