commit: 4f2fb8dc5e2b4ca88d42565ccd811e1028e8c720
parent 1e9333a9aa5f15dd9cbea826ee42561e4a9d12c3
Author: marcin mikołajczak <git@mkljczk.pl>
Date: Thu, 21 Dec 2023 00:13:13 +0100
Use consistent terminology
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
Diffstat:
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/lib/pleroma/web/mastodon_api/views/instance_view.ex b/lib/pleroma/web/mastodon_api/views/instance_view.ex
@@ -15,7 +15,7 @@ defmodule Pleroma.Web.MastodonAPI.InstanceView do
common_information(instance)
|> Map.merge(%{
- uri: Pleroma.Web.WebFinger.domain(),
+ uri: Pleroma.Web.WebFinger.host(),
description: Keyword.get(instance, :description),
short_description: Keyword.get(instance, :short_description),
email: Keyword.get(instance, :email),
@@ -49,7 +49,7 @@ defmodule Pleroma.Web.MastodonAPI.InstanceView do
common_information(instance)
|> Map.merge(%{
- domain: Pleroma.Web.WebFinger.domain(),
+ domain: Pleroma.Web.WebFinger.host(),
source_url: Pleroma.Application.repository(),
description: Keyword.get(instance, :short_description),
usage: %{users: %{active_month: Pleroma.User.active_user_count()}},
diff --git a/lib/pleroma/web/web_finger.ex b/lib/pleroma/web/web_finger.ex
@@ -70,7 +70,7 @@ defmodule Pleroma.Web.WebFinger do
def represent_user(user, "JSON") do
%{
- "subject" => "acct:#{user.nickname}@#{domain()}",
+ "subject" => "acct:#{user.nickname}@#{host()}",
"aliases" => gather_aliases(user),
"links" => gather_links(user)
}
@@ -90,13 +90,13 @@ defmodule Pleroma.Web.WebFinger do
:XRD,
%{xmlns: "http://docs.oasis-open.org/ns/xri/xrd-1.0"},
[
- {:Subject, "acct:#{user.nickname}@#{domain()}"}
+ {:Subject, "acct:#{user.nickname}@#{host()}"}
] ++ aliases ++ links
}
|> XmlBuilder.to_doc()
end
- def domain do
+ def host do
Pleroma.Config.get([__MODULE__, :domain]) || Pleroma.Web.Endpoint.host()
end