added endpoint to list specific group

This commit is contained in:
Bernhard B
2021-01-19 15:00:08 +01:00
parent 5d89b3fa51
commit 827d45c143
2 changed files with 21 additions and 0 deletions

View File

@@ -90,6 +90,7 @@ func main() {
{
groups.POST(":number", api.CreateGroup)
groups.GET(":number", api.GetGroups)
groups.GET(":number/:groupid", api.GetGroup)
groups.DELETE(":number/:groupid", api.DeleteGroup)
}