Fix latest group not refreshing in admin section
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
@@ -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.
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user