Skip to content
Prev Previous commit
Next Next commit
rate limiter over api key
  • Loading branch information
Emyrk committed Apr 4, 2023
commit 540de03fbac8268b0480f532512295929d4a61ec
2 changes: 1 addition & 1 deletion coderd/coderd.go
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ func New(options *Options) *API {

// Attach workspace apps routes.
r.Group(func(r chi.Router) {
r.Use(apiKeyMiddleware)
r.Use(apiRateLimiter)
workspaceAppServer.Attach(r)
})

Expand Down