mirror of
https://github.com/jech/galene.git
synced 2024-11-09 18:25:58 +01:00
Fix 405 result in usersHandler.
This commit is contained in:
parent
9eb0364016
commit
dc0610dc59
1 changed files with 1 additions and 2 deletions
|
@ -259,8 +259,7 @@ func usersHandler(w http.ResponseWriter, r *http.Request, g, pth string) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if r.Method != "HEAD" && r.Method != "GET" {
|
if r.Method != "HEAD" && r.Method != "GET" {
|
||||||
http.Error(w, "method not allowed",
|
methodNotAllowed(w, "HEAD", "GET")
|
||||||
http.StatusMethodNotAllowed)
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
users, etag, err := group.GetUsers(g)
|
users, etag, err := group.GetUsers(g)
|
||||||
|
|
Loading…
Reference in a new issue