mirror of
https://github.com/TheRealOwenRees/plantid-discord-bot.git
synced 2026-07-23 04:26:57 +00:00
change to webhook env variables
This commit is contained in:
@@ -1,6 +1,4 @@
|
|||||||
defmodule PlantIdDiscordBot.Metrics.Message do
|
defmodule PlantIdDiscordBot.Metrics.Message do
|
||||||
@webhook_url Application.compile_env(:plantid_discord_bot, :metrics_webhook_url)
|
|
||||||
|
|
||||||
def start() do
|
def start() do
|
||||||
PlantIdDiscordBot.Metrics.get_all()
|
PlantIdDiscordBot.Metrics.get_all()
|
||||||
|> format_message()
|
|> format_message()
|
||||||
@@ -33,12 +31,14 @@ defmodule PlantIdDiscordBot.Metrics.Message do
|
|||||||
end
|
end
|
||||||
|
|
||||||
def send_message(data) do
|
def send_message(data) do
|
||||||
|
webhook_url = Application.get_env(:plantid_discord_bot, :metrics_webhook_url)
|
||||||
|
|
||||||
body = Jason.encode!(data)
|
body = Jason.encode!(data)
|
||||||
|
|
||||||
headers = [
|
headers = [
|
||||||
{"Content-Type", "application/json"}
|
{"Content-Type", "application/json"}
|
||||||
]
|
]
|
||||||
|
|
||||||
HTTPoison.post!(@webhook_url, body, headers)
|
HTTPoison.post!(webhook_url, body, headers)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user