[wiki] Update actor documentation

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2022-02-10 02:02:25 +01:00
parent 4579fee51a
commit eebf35cc5c
Signed by: luzifer
GPG key ID: 0066F03ED215AD7D
2 changed files with 8 additions and 4 deletions

View file

@ -27,7 +27,7 @@ node_modules:
# --- Wiki Updates # --- Wiki Updates
actor_docs: actor_docs:
go run . actor-docs >wiki/Actors.md go run . --storage-file $(shell mktemp).json.gz actor-docs >wiki/Actors.md
pull_wiki: pull_wiki:
git subtree pull --prefix=wiki https://github.com/Luzifer/twitch-bot.wiki.git master --squash git subtree pull --prefix=wiki https://github.com/Luzifer/twitch-bot.wiki.git master --squash

View file

@ -10,7 +10,7 @@ Ban user from chat
attributes: attributes:
# Reason why the user was banned # Reason why the user was banned
# Optional: true # Optional: true
# Type: string # Type: string (Supports Templating)
reason: "" reason: ""
``` ```
@ -70,8 +70,8 @@ Update counter values
counter: "" counter: ""
# Value to add to the counter # Value to add to the counter
# Optional: true # Optional: true
# Type: int64 # Type: string (Supports Templating)
counter_step: 1 counter_step: "1"
# Value to set the counter to # Value to set the counter to
# Optional: true # Optional: true
# Type: string (Supports Templating) # Type: string (Supports Templating)
@ -278,4 +278,8 @@ Timeout user from chat
# Optional: false # Optional: false
# Type: duration # Type: duration
duration: 0s duration: 0s
# Reason why the user was timed out
# Optional: true
# Type: string (Supports Templating)
reason: ""
``` ```