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

18
pages/groups/latest.go Normal file
View File

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