mirror of
https://github.com/coder/coder.git
synced 2025-07-03 16:13:58 +00:00
fix: Use proper endpoint for user workspaces (#1356)
This was a silly mistake in a prior PR, so the code wasn't actually being called!
This commit is contained in:
@ -258,7 +258,7 @@ func New(options *Options) (http.Handler, func()) {
|
||||
})
|
||||
r.Get("/gitsshkey", api.gitSSHKey)
|
||||
r.Put("/gitsshkey", api.regenerateGitSSHKey)
|
||||
r.Get("/workspaces", api.workspacesByOwner)
|
||||
r.Get("/workspaces", api.workspacesByUser)
|
||||
})
|
||||
})
|
||||
})
|
||||
|
Reference in New Issue
Block a user