diff --git a/install/config.example.yml b/install/config.example.yml index da27427..fe66753 100644 --- a/install/config.example.yml +++ b/install/config.example.yml @@ -56,4 +56,8 @@ chat: enabled: false username: #https://twitchapps.com/tmi/ - password: \ No newline at end of file + password: + +twitch_mirror: +# enable to allow users to mirror video streams to twitch + enabled: false \ No newline at end of file diff --git a/src/config.ts b/src/config.ts index 3f74000..d118a25 100644 --- a/src/config.ts +++ b/src/config.ts @@ -81,6 +81,9 @@ const config: Object = { username: null, token: null }, localconfig['chat']['twitch']) - } + }, + twitch_mirror: Object.assign({ + enabled: false + }, localconfig['twitch_mirror']) }; export { config }; \ No newline at end of file