bump_server/lib/bump/firebase.ex
raphael d2fe15d3ae adds message title, adds sender delete
- message now contains a second string
  which is meant for unencrypted title
  information, which can be displayed
  without e2e encryption.
- senders can now be deleted
- the same sender / token connection is
  no longer added to the database
2022-01-03 13:07:33 +01:00

18 lines
337 B
Elixir

defmodule Bump.Firebase do
def test() do
IO.puts "Hello, world!"
end
def push(%{"firebase_token" => token, "title" => title, "data" => data}) do
IO.puts "Pushing #{title}"
n = Pigeon.FCM.Notification.new(
{:token, token},
%{"body" => title},
%{"data" => data})
Bump.FCM.push(n)
end
end