akkoma/lib/pleroma/elasticsearch/document_mappings/hashtag.ex
2021-12-16 15:58:56 +00:00

11 lines
199 B
Elixir

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