forked from AkkomaGang/akkoma
c4439c630f
grep -rl '# Copyright © .* Pleroma' * | xargs sed -i 's;Copyright © .* Pleroma .*;Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>;'
18 lines
606 B
Elixir
18 lines
606 B
Elixir
# Pleroma: A lightweight social networking server
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
defmodule Pleroma.HTTP.AdapterHelper.Default do
|
|
alias Pleroma.HTTP.AdapterHelper
|
|
|
|
@behaviour Pleroma.HTTP.AdapterHelper
|
|
|
|
@spec options(keyword(), URI.t()) :: keyword()
|
|
def options(opts, _uri) do
|
|
proxy = Pleroma.Config.get([:http, :proxy_url], nil)
|
|
AdapterHelper.maybe_add_proxy(opts, AdapterHelper.format_proxy(proxy))
|
|
end
|
|
|
|
@spec get_conn(URI.t(), keyword()) :: {:ok, keyword()}
|
|
def get_conn(_uri, opts), do: {:ok, opts}
|
|
end
|