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 (
// Popular shows the most popular groups.
func Popular(ctx *aero.Context) string {
groups := fetchGroups()
groups := fetchGroups("")
sort.Slice(groups, func(i, j int) bool {
if len(groups[i].Members) == len(groups[j].Members) {