2020-10-01 10:32:11 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2020-10-01 10:32:11 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.HTTP.WebPush do
|
|
|
|
@moduledoc false
|
|
|
|
|
2021-05-22 15:55:40 +00:00
|
|
|
def post(url, payload, headers, options \\ []) do
|
2020-10-01 10:32:11 +00:00
|
|
|
list_headers = Map.to_list(headers)
|
2021-05-22 15:55:40 +00:00
|
|
|
Pleroma.HTTP.post(url, payload, list_headers, options)
|
2020-10-01 10:32:11 +00:00
|
|
|
end
|
|
|
|
end
|