From 1e4a0cd29d93eb6ff1cdeb9cb21e60c861aacb2f Mon Sep 17 00:00:00 2001 From: stephen Date: Mon, 21 Jun 2021 17:51:13 -0400 Subject: [PATCH] Adding all to config.ini, and sendto to index.js --- config.ini.dist | 3 +++ index.js | 1 + 2 files changed, 4 insertions(+) diff --git a/config.ini.dist b/config.ini.dist index b274dc7..42ac44b 100644 --- a/config.ini.dist +++ b/config.ini.dist @@ -19,6 +19,9 @@ gotify_message = gotify_priority = gotify_title = gotify_url = +irc_nick = +irc_sendto = +irc_server = mastodon_key = mastodon_toot = mastodon_url = diff --git a/index.js b/index.js index 0b75b2e..66acf7b 100644 --- a/index.js +++ b/index.js @@ -35,6 +35,7 @@ const gotify_priority = config.gotify_priority; const gotify_title = config.gotify_title; const gotify_url = config.gotify_url; const irc_nick = config.irc_nick; +const irc_sendto = config.irc_sendto; const irc_server = config.irc_server; const mastodon_token = config.mastodon_token; const mastodon_toot = config.mastodon_toot;