forked from AkkomaGang/akkoma
activitypub: utils: wrap Note objects in a Create when extracting mentions
This commit is contained in:
parent
8c805ada32
commit
b9871e7e5a
1 changed files with 11 additions and 0 deletions
|
@ -95,6 +95,17 @@ def generate_id(type) do
|
|||
"#{Web.base_url()}/#{type}/#{UUID.generate()}"
|
||||
end
|
||||
|
||||
def get_notified_from_object(%{"type" => type} = object) when type == "Note" do
|
||||
fake_create_activity = %{
|
||||
"to" => object["to"],
|
||||
"cc" => object["cc"],
|
||||
"type" => "Create",
|
||||
"object" => object
|
||||
}
|
||||
|
||||
Notification.get_notified_from_activity(%Activity{data: fake_create_activity}, false)
|
||||
end
|
||||
|
||||
def get_notified_from_object(object) do
|
||||
Notification.get_notified_from_activity(%Activity{data: object}, false)
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue