mirror of
https://github.com/jech/galene.git
synced 2024-11-09 18:25:58 +01:00
Check for empty path in api.
This commit is contained in:
parent
e8ea707904
commit
fe15057252
1 changed files with 4 additions and 0 deletions
|
@ -234,6 +234,10 @@ func apiGroupHandler(w http.ResponseWriter, r *http.Request, pth string) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func usersHandler(w http.ResponseWriter, r *http.Request, g, pth string) {
|
func usersHandler(w http.ResponseWriter, r *http.Request, g, pth string) {
|
||||||
|
if pth == "" {
|
||||||
|
http.NotFound(w, r)
|
||||||
|
return
|
||||||
|
}
|
||||||
if pth == "/" {
|
if pth == "/" {
|
||||||
if !checkAdmin(w, r) {
|
if !checkAdmin(w, r) {
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in a new issue