Return 404 errors for tokens in unknown groups.
This commit is contained in:
@@ -500,6 +500,12 @@ func tokensHandler(w http.ResponseWriter, r *http.Request, g, pth string) {
|
|||||||
if !checkAdmin(w, r) {
|
if !checkAdmin(w, r) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
// check that the group exists
|
||||||
|
_, err := group.GetDescription(g)
|
||||||
|
if err != nil {
|
||||||
|
httpError(w, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
if pth == "/" {
|
if pth == "/" {
|
||||||
if r.Method == "HEAD" || r.Method == "GET" {
|
if r.Method == "HEAD" || r.Method == "GET" {
|
||||||
tokens, etag, err := token.List(g)
|
tokens, etag, err := token.List(g)
|
||||||
|
|||||||
Reference in New Issue
Block a user