pleroma/lib/pleroma/elasticsearch/document_mappings/hashtag.ex
2021-12-14 12:37:10 +00:00

11 lines
201 B
Elixir

defmodule Pleroma.Elasticsearch.DocumentMappings.Hashtag do
def id(obj), do: obj.id
def encode(hashtag) do
%{
hashtag: hashtag.name,
timestamp: hashtag.inserted_at
}
end
end