forked from potsda.mn/mobilizon
28430d6d57
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
13 lines
293 B
Elixir
13 lines
293 B
Elixir
defmodule Mobilizon.Service.Config.Helpers do
|
|
@moduledoc """
|
|
Provide some helpers to configuration files
|
|
"""
|
|
|
|
@spec host_from_uri(String.t() | nil) :: String.t() | nil
|
|
def host_from_uri(nil), do: nil
|
|
|
|
def host_from_uri(uri) when is_binary(uri) do
|
|
URI.parse(uri).host
|
|
end
|
|
end
|