gitea/src/e6c2dee6-54b9-4476-8896-2bf.../README.md

74 lines
2.0 KiB
Markdown
Raw Permalink Normal View History

2023-04-15 15:08:07 +00:00
```
██████╗ ██████╗ ██╗ ██╗███████╗██████╗
██╔══██╗██╔═══██╗██║ ██║██╔════╝██╔══██╗
██████╔╝██║ ██║██║ █╗ ██║█████╗ ██████╔╝
██╔═══╝ ██║ ██║██║███╗██║██╔══╝ ██╔══██╗
██║ ╚██████╔╝╚███╔███╔╝███████╗██║ ██║
╚═╝ ╚═════╝ ╚══╝╚══╝ ╚══════╝╚═╝ ╚═╝
```
# class Reactions (Details)
> namespace: **VDM\Joomla\Gitea\Issue**
2023-10-10 09:39:23 +00:00
> extends: **Api**
2023-04-15 15:08:07 +00:00
```uml
@startuml
class Reactions #Gold {
+ list(string $owner, string $repo, ...) : ?array
+ add(string $owner, string $repo, ...) : ?object
+ remove(string $owner, string $repo, ...) : string
}
note right of Reactions::list
Get a list reactions of an issue.
since: 3.2.0
return: ?array
arguments:
string $owner
string $repo
int $index
int $page = 1
int $limit = 10
end note
note right of Reactions::add
Add a reaction to an issue.
since: 3.2.0
return: ?object
arguments:
string $owner
string $repo
int $index
string $content
end note
note right of Reactions::remove
Remove a reaction from an issue.
since: 3.2.0
return: string
arguments:
string $owner
string $repo
int $index
string $content
end note
@enduml
```
---
```
██╗ ██████╗██████╗
██║██╔════╝██╔══██╗
██║██║ ██████╔╝
██ ██║██║ ██╔══██╗
╚█████╔╝╚██████╗██████╔╝
╚════╝ ╚═════╝╚═════╝
```
> Build with [Joomla Component Builder](https://git.vdm.dev/joomla/Component-Builder)