Don't send json to the tty

This commit is contained in:
Max Wofford 2025-02-25 17:34:53 -05:00
parent 6ea52dae17
commit 398033bf0a

View file

@ -4,8 +4,6 @@ class SailorsLogTeletypeJob < ApplicationJob
def perform(message)
HTTP.auth("Bearer #{ENV['TELETYPE_API_KEY']}")
.post("https://printer.schmitworks.dev/api/raw",
body: {
text: message
})
body: message)
end
end