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 @@ def get_by_ap_id(ap_id) do
) )
end end
# TODO: def create_by_object_ap_id(ap_id) do
# Go through these and fix them everywhere.
# Wrong name, only returns create activities
def all_by_object_ap_id_q(ap_id) do
from( from(
activity in Activity, activity in Activity,
where: where:
@ -67,7 +64,7 @@ def by_object_ap_id(ap_id) do
end end
def get_all_by_object_ap_id(ap_id) do 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 end
def create_activity_by_object_id_query(ap_ids) do def create_activity_by_object_id_query(ap_ids) do