Added joined groups page

This commit is contained in:
2018-11-22 11:51:44 +09:00
parent da08f80247
commit 7243d02e85
8 changed files with 51 additions and 6 deletions

View File

@ -8,7 +8,7 @@ import (
// Latest shows the latest groups.
func Latest(ctx *aero.Context) string {
groups := fetchGroups()
groups := fetchGroups("")
sort.Slice(groups, func(i, j int) bool {
return groups[i].Created > groups[j].Created