Skip to content

chore: move app proxying code to workspaceapps pkg #6998

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Apr 5, 2023
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