aboutsummaryrefslogtreecommitdiff
path: root/internal/authz
diff options
context:
space:
mode:
Diffstat (limited to 'internal/authz')
-rw-r--r--internal/authz/middleware.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/internal/authz/middleware.go b/internal/authz/middleware.go
index 2aa4ba7..3ba95ad 100644
--- a/internal/authz/middleware.go
+++ b/internal/authz/middleware.go
@@ -76,7 +76,6 @@ func Authorization(adminSvc *admin.Servicer, next http.Handler) http.Handler {
slog.Info("Not Authorized", "urn", urn, "repo", repo)
http.Error(rw, "Access denied", http.StatusForbidden)
return
-
}
slog.Debug("Access Attempt", "action", action, "repo", repo)
next.ServeHTTP(rw, req.WithContext(ctx))