We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 339f320 commit 0dec175Copy full SHA for 0dec175
coderd/coderd.go
@@ -56,10 +56,6 @@ func New(options *Options) http.Handler {
56
r.Use(httpmw.ExtractOrganizationParam(options.Database))
57
r.Get("/", projects.allProjectsForOrganization)
58
r.Post("/", projects.createProject)
59
- r.Route("/{project}", func(r chi.Router) {
60
- r.Get("/", nil) // Get a single project
61
- r.Patch("/", nil) // Update a project
62
- })
63
})
64
65
0 commit comments