Revert "fix search results sorted by id instead of by begins_on"
This reverts commit a133612d9f
.
This commit is contained in:
parent
2bdb8fd1fa
commit
eb72248e16
@ -520,8 +520,7 @@ defmodule Mobilizon.Events do
|
|||||||
|> events_for_tags(args)
|
|> events_for_tags(args)
|
||||||
|> events_for_location(args)
|
|> events_for_location(args)
|
||||||
|> filter_local_or_from_followed_instances_events()
|
|> filter_local_or_from_followed_instances_events()
|
||||||
|> filter_public_visibility()
|
|> order_by([q], asc: q.id)
|
||||||
|> event_order_begins_on_asc()
|
|
||||||
|> Page.build_page(page, limit)
|
|> Page.build_page(page, limit)
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -1342,6 +1341,8 @@ defmodule Mobilizon.Events do
|
|||||||
@spec events_for_search_query(String.t()) :: Ecto.Query.t()
|
@spec events_for_search_query(String.t()) :: Ecto.Query.t()
|
||||||
defp events_for_search_query(search_string) do
|
defp events_for_search_query(search_string) do
|
||||||
Event
|
Event
|
||||||
|
|> where([e], e.visibility == ^:public)
|
||||||
|
|> distinct([e], e.id)
|
||||||
|> do_event_for_search_query(search_string)
|
|> do_event_for_search_query(search_string)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user