We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94118d5 commit ddad37aCopy full SHA for ddad37a
coderd/coderd.go
@@ -815,6 +815,8 @@ func New(options *Options) *API {
815
httpmw.ExtractOrganizationParam(options.Database),
816
)
817
r.Get("/", api.organization)
818
+ r.Patch("/", api.patchOrganization)
819
+ r.Delete("/", api.deleteOrganization)
820
r.Post("/templateversions", api.postTemplateVersionsByOrganization)
821
r.Route("/templates", func(r chi.Router) {
822
r.Post("/", api.postTemplateByOrganization)
0 commit comments