Change coordinate checker link.
Add logger messages when users press the button.
This commit is contained in:
parent
f71c0f0d63
commit
0087b4dca8
2 changed files with 5 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
|||
defmodule UiWeb.MorseLive do
|
||||
use Phoenix.LiveView
|
||||
require Logger
|
||||
|
||||
@topic "morse_progress"
|
||||
|
||||
|
@ -13,7 +14,10 @@ defmodule UiWeb.MorseLive do
|
|||
end
|
||||
|
||||
def handle_event("toggle_morse", _value, %{assigns: %{ip: ip}} = socket) do
|
||||
Logger.info("#{ip} pressed the button!")
|
||||
|
||||
if not Morse.Server.in_progress?() and ip_send_message?(ip) do
|
||||
Logger.info("Sending Telegram message.")
|
||||
spawn(fn -> Ui.TelegramBot.message("#{ip} pressed the button!") end)
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue