gitea/src/4a9e144e-7754-4d3f-9325-9ff...
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 Applications (Details)

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

@startuml
class Applications  #Gold {
  + get(int $page = 1, int $limit = 10) : ?array
  + id(int $id) : ?object
  + create(string $appName, array $redirectUris, ...) : ?object
  + delete(int $id) : string
  + update(int $appId, string $appName, ...) : ?object
}

note right of Applications::get
  List the authenticated user's oauth2 applications.

  since: 3.2.0
  return: ?array
end note

note right of Applications::id
  Get an OAuth2 application by ID.

  since: 3.2.0
  return: ?object
end note

note right of Applications::create
  Creates a new OAuth2 application.

  since: 3.2.0
  return: ?object
  
  arguments:
    string $appName
    array $redirectUris
    bool $confidentialClient = true
end note

note right of Applications::delete
  Delete an OAuth2 application by ID.

  since: 3.2.0
  return: string
end note

note right of Applications::update
  Update an OAuth2 application by ID, this includes regenerating the client secret.

  since: 3.2.0
  return: ?object
  
  arguments:
    int $appId
    string $appName
    array $redirectUris
    bool $confidentialClient = true
end note
 
@enduml

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

Build with Joomla Component Builder