Implemented group image upload

This commit is contained in:
2018-11-22 10:27:53 +09:00
parent f8be03d4c5
commit 1c7e4d0290
10 changed files with 161 additions and 58 deletions

22
pages/groups/popular.go Normal file
View File

@ -0,0 +1,22 @@
package groups
import (
"sort"
"github.com/aerogo/aero"
)
// Popular shows the most popular groups.
func Popular(ctx *aero.Context) string {
groups := fetchGroups()
sort.Slice(groups, func(i, j int) bool {
if len(groups[i].Members) == len(groups[j].Members) {
return groups[i].Created > groups[j].Created
}
return len(groups[i].Members) > len(groups[j].Members)
})
return render(ctx, groups)
}