Compare commits
2 Commits
b8b58b14a4
...
819b84caf7
Author | SHA1 | Date |
---|---|---|
Shadowfacts | 819b84caf7 | |
Shadowfacts | 496157e505 |
|
@ -14,7 +14,6 @@ defmodule TuskerPush.Forwarder do
|
|||
},
|
||||
"mutable-content" => 1
|
||||
},
|
||||
"reg_id" => registration.id,
|
||||
"data" => Base.encode64(body),
|
||||
"salt" => salt,
|
||||
"pk" => key,
|
||||
|
|
|
@ -12,7 +12,7 @@ defmodule TuskerPushWeb.PushController do
|
|||
{:body, {:ok, body, conn}} <- {:body, read_body(conn)},
|
||||
{:salt, salt} when not is_nil(salt) <- get_salt(conn),
|
||||
{:key, key} when not is_nil(key) <- get_key(conn),
|
||||
context <- Map.get(params, "context"),
|
||||
context <- Map.get(params, "ctx"),
|
||||
{:forward, :ok} <- {:forward, Forwarder.forward(registration, body, salt, key, context)} do
|
||||
send_resp(conn, 200, "ok")
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue