From 19f54d910daf0f2d98a5b7f74dd841b7c45747f6 Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Sat, 29 Oct 2022 15:17:43 +0200 Subject: [PATCH] [wiki] Update actor documentation Signed-off-by: Knut Ahlers --- Makefile | 2 +- wiki/Actors.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 4a4bbf2..219f35a 100644 --- a/Makefile +++ b/Makefile @@ -27,7 +27,7 @@ node_modules: # --- Wiki Updates actor_docs: - go run . --storage-file $(shell mktemp).json.gz actor-docs >wiki/Actors.md + go run . --storage-conn-string $(shell mktemp).db actor-docs >wiki/Actors.md pull_wiki: git subtree pull --prefix=wiki https://github.com/Luzifer/twitch-bot.wiki.git master --squash diff --git a/wiki/Actors.md b/wiki/Actors.md index 3615155..8cea0ee 100644 --- a/wiki/Actors.md +++ b/wiki/Actors.md @@ -9,7 +9,7 @@ Ban user from chat - type: ban attributes: # Reason why the user was banned - # Optional: true + # Optional: false # Type: string (Supports Templating) reason: "" ``` @@ -115,7 +115,7 @@ Update stream information # Optional: false # Type: string (Supports Templating) channel: "" - # Category / Game to set + # Category / Game to set (use `@1234` format to pass an explicit ID) # Optional: true # Type: string (Supports Templating) game: "" @@ -305,7 +305,7 @@ Timeout user from chat # Type: duration duration: 0s # Reason why the user was timed out - # Optional: true + # Optional: false # Type: string (Supports Templating) reason: "" ```