Compare commits

..

No commits in common. "2343eb2000c010098f93f3ef04274ffb96bf6e2a" and "43c2abf1386812b488ee1a7e2620135ddc8f727e" have entirely different histories.

1 changed files with 0 additions and 1 deletions

View File

@ -103,7 +103,6 @@ func (m *Middleware) AdminProtectedRoute(next http.Handler) http.Handler {
user := userOptional.(UserClaims)
if IsAdmin(user.Groups) {
next.ServeHTTP(w, r)
return
}
}