akkoma/lib/pleroma/elasticsearch/document_mappings/hashtag.ex

22 lines
507 B
Elixir
Raw Normal View History

2022-01-20 12:48:16 +00:00
# Akkoma: A lightweight social networking server
# Copyright © 2022-2022 Akkoma Authors <https://git.ihatebeinga.live/IHBAGang/akkoma/>
# SPDX-License-Identifier: AGPL-3.0-only
2021-12-14 12:37:10 +00:00
defmodule Pleroma.Elasticsearch.DocumentMappings.Hashtag do
def id(obj), do: obj.id
2021-12-16 16:05:18 +00:00
def encode(%{timestamp: _} = hashtag) do
%{
hashtag: hashtag.name,
2021-12-16 16:05:33 +00:00
timestamp: hashtag.timestamp
}
2021-12-16 16:05:18 +00:00
end
2021-12-14 12:37:10 +00:00
def encode(hashtag) do
%{
hashtag: hashtag.name,
2021-12-16 16:05:18 +00:00
timestamp: hashtag.inserted_at
2021-12-14 12:37:10 +00:00
}
end
end