mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-08 16:20:02 +00:00
[wiki] Update actor documentation
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
4579fee51a
commit
eebf35cc5c
2 changed files with 8 additions and 4 deletions
2
Makefile
2
Makefile
|
@ -27,7 +27,7 @@ node_modules:
|
|||
# --- Wiki Updates
|
||||
|
||||
actor_docs:
|
||||
go run . actor-docs >wiki/Actors.md
|
||||
go run . --storage-file $(shell mktemp).json.gz actor-docs >wiki/Actors.md
|
||||
|
||||
pull_wiki:
|
||||
git subtree pull --prefix=wiki https://github.com/Luzifer/twitch-bot.wiki.git master --squash
|
||||
|
|
|
@ -10,7 +10,7 @@ Ban user from chat
|
|||
attributes:
|
||||
# Reason why the user was banned
|
||||
# Optional: true
|
||||
# Type: string
|
||||
# Type: string (Supports Templating)
|
||||
reason: ""
|
||||
```
|
||||
|
||||
|
@ -70,8 +70,8 @@ Update counter values
|
|||
counter: ""
|
||||
# Value to add to the counter
|
||||
# Optional: true
|
||||
# Type: int64
|
||||
counter_step: 1
|
||||
# Type: string (Supports Templating)
|
||||
counter_step: "1"
|
||||
# Value to set the counter to
|
||||
# Optional: true
|
||||
# Type: string (Supports Templating)
|
||||
|
@ -278,4 +278,8 @@ Timeout user from chat
|
|||
# Optional: false
|
||||
# Type: duration
|
||||
duration: 0s
|
||||
# Reason why the user was timed out
|
||||
# Optional: true
|
||||
# Type: string (Supports Templating)
|
||||
reason: ""
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue