Put objects in inserted activties into the db.

This commit is contained in:
Roger Braun 2017-03-30 18:07:01 +02:00
commit 6aa1523bb3
3 changed files with 10 additions and 1 deletions

View file

@ -1,9 +1,16 @@
defmodule Pleroma.Object do
use Ecto.Schema
alias Pleroma.{Repo, Object}
import Ecto.Query
schema "objects" do
field :data, :map
timestamps()
end
def get_by_ap_id(ap_id) do
Repo.one(from object in Object,
where: fragment("? @> ?", object.data, ^%{id: ap_id}))
end
end