Activity: all_by_object_ap_id_q/1 → create_by_object_ap_id/1

This commit is contained in:
Haelwenn (lanodan) Monnier 2019-01-21 06:39:00 +01:00
parent 75e4c8f0b2
commit 4ad5a0abb9
No known key found for this signature in database
GPG Key ID: D5B7A8E43C997DEE
1 changed files with 2 additions and 5 deletions

View File

@ -36,10 +36,7 @@ defmodule Pleroma.Activity do
)
end
# TODO:
# Go through these and fix them everywhere.
# Wrong name, only returns create activities
def all_by_object_ap_id_q(ap_id) do
def create_by_object_ap_id(ap_id) do
from(
activity in Activity,
where:
@ -67,7 +64,7 @@ defmodule Pleroma.Activity do
end
def get_all_by_object_ap_id(ap_id) do
Repo.all(all_by_object_ap_id_q(ap_id))
Repo.all(create_by_object_ap_id(ap_id))
end
def create_activity_by_object_id_query(ap_ids) do