mobilizon.chapril.org-mobil.../lib/service/global_search/group_result.ex
Thomas Citharel ce38361d65
Remove duplicate key in struct
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2022-08-28 10:02:06 +02:00

19 lines
334 B
Elixir

defmodule Mobilizon.Service.GlobalSearch.GroupResult do
@moduledoc """
The structure holding search result information about a group
"""
defstruct [
:id,
:url,
:name,
:preferred_username,
:domain,
:avatar,
:summary,
:members_count,
:follower_count,
:type,
:physical_address
]
end