Fix latest group not refreshing in admin section

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2022-04-22 12:02:14 +02:00
parent 3ce8c142b8
commit e4a22bdb83
2 changed files with 10 additions and 7 deletions

View File

@@ -444,6 +444,15 @@ defmodule Mobilizon.Actors do
|> Repo.preload(:organized_events)
end
@spec last_group_created :: Actor.t() | nil
def last_group_created do
Actor
|> where(type: :Group, suspended: false)
|> order_by(desc: :inserted_at)
|> limit(1)
|> Repo.one()
end
@doc """
Builds a page struct for actors by their name or displayed name.
"""