forked from AkkomaGang/akkoma
Use approval_required
in /api/v1/instance
This commit is contained in:
parent
0d004a9d04
commit
9ce95fa68f
2 changed files with 2 additions and 2 deletions
|
@ -26,6 +26,7 @@ def render("show.json", _) do
|
|||
thumbnail: Keyword.get(instance, :instance_thumbnail),
|
||||
languages: ["en"],
|
||||
registrations: Keyword.get(instance, :registrations_open),
|
||||
approval_required: Keyword.get(instance, :account_approval_required),
|
||||
# Extra (not present in Mastodon):
|
||||
max_toot_chars: Keyword.get(instance, :limit),
|
||||
poll_limits: Keyword.get(instance, :poll_limits),
|
||||
|
@ -39,7 +40,6 @@ def render("show.json", _) do
|
|||
pleroma: %{
|
||||
metadata: %{
|
||||
account_activation_required: Keyword.get(instance, :account_activation_required),
|
||||
account_approval_required: Keyword.get(instance, :account_approval_required),
|
||||
features: features(),
|
||||
federation: federation(),
|
||||
fields_limits: fields_limits()
|
||||
|
|
|
@ -27,6 +27,7 @@ test "get instance information", %{conn: conn} do
|
|||
"thumbnail" => _,
|
||||
"languages" => _,
|
||||
"registrations" => _,
|
||||
"approval_required" => _,
|
||||
"poll_limits" => _,
|
||||
"upload_limit" => _,
|
||||
"avatar_upload_limit" => _,
|
||||
|
@ -38,7 +39,6 @@ test "get instance information", %{conn: conn} do
|
|||
} = result
|
||||
|
||||
assert result["pleroma"]["metadata"]["account_activation_required"] != nil
|
||||
assert result["pleroma"]["metadata"]["account_approval_required"] != nil
|
||||
assert result["pleroma"]["metadata"]["features"]
|
||||
assert result["pleroma"]["metadata"]["federation"]
|
||||
assert result["pleroma"]["metadata"]["fields_limits"]
|
||||
|
|
Loading…
Reference in a new issue