total rebase
[anni] / lib / pleroma / http / web_push.ex
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2022 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, options \\ []) do
9     list_headers =
10       headers
11       |> Map.to_list()
12       |> Kernel.++([{"content-type", "octet-stream"}])
13
14     Pleroma.HTTP.post(url, payload, list_headers, options)
15   end
16 end