mirror of
https://github.com/coder/coder.git
synced 2025-07-13 21:36:50 +00:00
chore: Allow editing proxy fields via api. (#7435)
* chore: Add ability to update workspace proxy fields
This commit is contained in:
@ -120,6 +120,8 @@ func New(ctx context.Context, options *Options) (*API, error) {
|
||||
httpmw.ExtractWorkspaceProxyParam(api.Database),
|
||||
)
|
||||
|
||||
r.Get("/", api.workspaceProxy)
|
||||
r.Patch("/", api.patchWorkspaceProxy)
|
||||
r.Delete("/", api.deleteWorkspaceProxy)
|
||||
})
|
||||
})
|
||||
|
Reference in New Issue
Block a user