Merge remote-tracking branch 'origin/develop' into translate-posts

This commit is contained in:
mkljczk 2025-02-22 14:07:23 +01:00
commit 013c60e13a
52 changed files with 955 additions and 31 deletions

View file

@ -668,4 +668,11 @@ defmodule Pleroma.Factory do
|> Map.merge(params)
|> Pleroma.Announcement.add_rendered_properties()
end
def hashtag_factory(params \\ %{}) do
%Pleroma.Hashtag{
name: "test #{sequence(:hashtag_name, & &1)}"
}
|> Map.merge(params)
end
end