From 866a2663d4093204317aba7ff87a6d93eaf805fd Mon Sep 17 00:00:00 2001 From: Roger Braun Date: Fri, 24 Mar 2017 00:09:08 +0100 Subject: Add fetching of activities in context. --- lib/pleroma/web/activity_pub/activity_pub.ex | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'lib') diff --git a/lib/pleroma/web/activity_pub/activity_pub.ex b/lib/pleroma/web/activity_pub/activity_pub.ex index d14ce3570..043e33042 100644 --- a/lib/pleroma/web/activity_pub/activity_pub.ex +++ b/lib/pleroma/web/activity_pub/activity_pub.ex @@ -60,4 +60,10 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do Repo.all(query) |> Enum.reverse end + + def fetch_activities_for_context(context) do + query = from activity in Activity, + where: fragment("? @> ?", activity.data, ^%{ context: context }) + Repo.all(query) + end end -- cgit v1.2.3