51f72fbf80029b4a1b7fc78a501c938dfa8284e9
[akkoma] / lib / pleroma / http / web_push.ex
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.HTTP.WebPush do
6 @moduledoc false
7
8 def post(url, payload, headers) do
9 list_headers = Map.to_list(headers)
10 Pleroma.HTTP.post(url, payload, list_headers)
11 end
12 end