Browse Source

Order subgroups in sidebar alphabetically

merge-requests/151/head
Deimos 11 months ago
parent
commit
a6de9d4880
  1. 1
      tildes/tildes/views/topic.py

1
tildes/tildes/views/topic.py

@ -193,6 +193,7 @@ def get_group_topics( # noqa
Group.path.descendant_of(request.context.path), Group.path.descendant_of(request.context.path),
Group.path != request.context.path, Group.path != request.context.path,
) )
.order_by(Group.path)
.all() .all()
) )

Loading…
Cancel
Save