Adding all to config.ini, and sendto to index.js

This commit is contained in:
Stephen Vanderwarker 2021-06-21 17:51:13 -04:00
parent 31589297b9
commit 1e4a0cd29d
2 changed files with 4 additions and 0 deletions

View File

@ -19,6 +19,9 @@ gotify_message =
gotify_priority = gotify_priority =
gotify_title = gotify_title =
gotify_url = gotify_url =
irc_nick =
irc_sendto =
irc_server =
mastodon_key = mastodon_key =
mastodon_toot = mastodon_toot =
mastodon_url = mastodon_url =

View File

@ -35,6 +35,7 @@ const gotify_priority = config.gotify_priority;
const gotify_title = config.gotify_title; const gotify_title = config.gotify_title;
const gotify_url = config.gotify_url; const gotify_url = config.gotify_url;
const irc_nick = config.irc_nick; const irc_nick = config.irc_nick;
const irc_sendto = config.irc_sendto;
const irc_server = config.irc_server; const irc_server = config.irc_server;
const mastodon_token = config.mastodon_token; const mastodon_token = config.mastodon_token;
const mastodon_toot = config.mastodon_toot; const mastodon_toot = config.mastodon_toot;