Added http endpoint to list all users on a list (#87)
This commit is contained in:
parent
b63928850a
commit
12eaddc8ee
21 changed files with 722 additions and 56 deletions
|
|
@ -254,6 +254,7 @@ func registerAPIRoutes(a *echo.Group) {
|
|||
a.POST("/lists/:list", listHandler.UpdateWeb)
|
||||
a.DELETE("/lists/:list", listHandler.DeleteWeb)
|
||||
a.PUT("/namespaces/:namespace/lists", listHandler.CreateWeb)
|
||||
a.GET("/lists/:list/listusers", apiv1.ListUsersForList)
|
||||
|
||||
taskHandler := &handler.WebHandler{
|
||||
EmptyStruct: func() handler.CObject {
|
||||
|
|
|
|||
Reference in a new issue