Merge branch 'relaxed-also-known-as' into 'develop'

Relax alsoKnownAs requirements to just being a URI

See merge request pleroma/pleroma!4367
This commit is contained in:
lain 2025-06-14 08:30:13 +00:00
commit bc75bb35fa
4 changed files with 12 additions and 2 deletions

View file

@ -2792,6 +2792,15 @@ defmodule Pleroma.UserTest do
assert user_updated.also_known_as |> length() == 1
assert user2.ap_id in user_updated.also_known_as
end
test "should tolerate non-http(s) aliases" do
user =
insert(:user, %{
also_known_as: ["at://did:plc:xgvzy7ni6ig6ievcbls5jaxe"]
})
assert "at://did:plc:xgvzy7ni6ig6ievcbls5jaxe" in user.also_known_as
end
end
describe "alias_users/1" do