Currently happening events are not future events

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2020-06-10 09:44:01 +02:00
parent 503616fa60
commit c4cdfd9857
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
1 changed files with 1 additions and 2 deletions

View File

@ -1506,11 +1506,10 @@ defmodule Mobilizon.Events do
from(e in query, where: e.draft == ^is_draft)
end
# Currently happening events are also future events
@spec filter_future_events(Ecto.Query.t(), boolean) :: Ecto.Query.t()
defp filter_future_events(query, true) do
from(q in query,
where: q.begins_on > ^DateTime.utc_now() or q.ends_on > ^DateTime.utc_now()
where: q.begins_on > ^DateTime.utc_now()
)
end