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

9
pages/groups/fetch.go Normal file
View File

@ -0,0 +1,9 @@
package groups
import "github.com/animenotifier/arn"
func fetchGroups() []*arn.Group {
return arn.FilterGroups(func(group *arn.Group) bool {
return !group.IsDraft
})
}