gitea/src/9c9ba4c4-2039-4396-9ea2-621...
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 Labels (Details)

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

@startuml
class Labels  #Gold {
  + list(string $orgName, int $pageNum = 1, ...) : ?array
  + create(string $org, string $name, ...) : ?object
  + get(string $org, int $id) : ?object
  + delete(string $org, int $id) : string
  + update(string $org, int $id, ...) : ?object
}

note right of Labels::list
  List an organization's labels.

  since: 3.2.0
  return: ?array
  
  arguments:
    string $orgName
    int $pageNum = 1
    int $pageSize = 10
end note

note right of Labels::create
  Create a label for an organization.

  since: 3.2.0
  return: ?object
  
  arguments:
    string $org
    string $name
    string $color
    string $description = ''
end note

note right of Labels::get
  Get a single label for an organization.

  since: 3.2.0
  return: ?object
end note

note right of Labels::delete
  Delete a label for an organization.

  since: 3.2.0
  return: string
end note

note right of Labels::update
  Update a label for an organization.

  since: 3.2.0
  return: ?object
  
  arguments:
    string $org
    int $id
    string $name = ''
    string $color = ''
    string $description = ''
end note
 
@enduml

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

Build with Joomla Component Builder